google code prettify

2016年3月19日 星期六

運用Jsoup取得網頁資訊

如果要使用Java去parse Web page, 可以使用Jsoup,簡單好用
以下範例為使用jsoup抓取yahoo 首頁的新聞標題



package test.charles.JsoupExample;

import java.io.IOException;

import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
import org.jsoup.nodes.Element;
import org.jsoup.select.Elements;

public class App 
{
    public static void main( String[] args ) throws IOException
    {
     //read yahoo home page
     String url  = "https://tw.yahoo.com/";
     Document doc = Jsoup.connect(url).get();
     
     //get first news tab one
     Element t1 = doc.getElementById("t1");
     
     //get news title
     Elements newsTitle = t1.select("a[href] > span");
     
     //print size
        System.out.println("size:" + newsTitle.size());
        
        //print news title
        for(Element e:newsTitle){
         System.out.println("title:" + e.text());
        }
        
    }
}




程式碼可以至github下載

2016年3月16日 星期三

在Mac上安裝Cordova

當想要快速開發一個簡單的app又不會寫Android及iOS原生程式的話
我很推薦使用Cordova
這是一種使用Html + Javascript + CSS來模擬app,對於網頁工程師並沒什麼門檻 以下範列為在Mac上安裝Cordova,並建立範例的Android project

 1、透過nodejs安裝cordova
輸入「sudo npm install cordova -g」
-g代表將此套件安裝在全域的資料夾中


2、檢查是否安裝成功
輸入「cordova --version」



3、切換到資料夾下建立Cordova專案
輸入「sudo cordova create hello」



此時可以看到成功產生出Cordova的專案



4、切到目錄下產生Android的專案
輸入「sudo cordova platforms add android」



5、之後再到platforms下檢查就可以看到android的專案嚕


結束!!

2016年3月3日 星期四

Java Collections.sort

當使用自訂義的類別想要排序時,可以採用Collections.sort
範例如下



package test.charles.CollectionSort;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Comparator;
import java.util.List;

public class App 
{
    public static void main( String[] args )
    {
        List userList = new ArrayList();
        //add user name and age
        userList.add(new User("user1",19));
        userList.add(new User("user2",40));
        userList.add(new User("user3",3));
        userList.add(new User("user4",27));
        userList.add(new User("user5",10));
        userList.add(new User("user6",70));
        
        //sort by user age
        Collections.sort(userList, new Comparator() {
   public int compare(User o1, User o2) {
    return o1.getAge().compareTo(o2.getAge());
   }
  });
        
        //print information
        for(User s :userList){
         System.out.println("name:" + s.getName() + ",age:" + s.getAge());
        }
    }
}




程式碼可以至github下載