java抓取12306資訊實現火車餘票查詢樣本_java

來源:互聯網
上載者:User

最近在弄一個微信的公眾帳號,涉及到火車票查詢,之前用的網上找到的一個介面,但只能查到火車時刻表,12306又沒有提供專門的查票的介面。今天突然想起自己直接去12306上查詢,抓取查詢返回的資料包,這樣就可以得到火車票的資訊。這裡就隨筆記一下擷取12306餘票的過程。

首先,我用firefox瀏覽器上12306查詢餘票。開啟firefox的Web控制台,選上網路中的“記錄請求和響應主體”

然後輸入地址日期資訊之後點擊網頁上的查詢按鈕,就能在Web控制台下看到網頁請求的地址了:

就是圖片中的第二條,即當你點擊查詢按鈕時,處理該事件的實際地址。點開它可以看到

請求網址,要求標頭,回應標頭和響應主體這些東西,響應主體裡就是我們需要的火車票資訊。

有了這個請求網址了就可以到實際代碼中進行操作了。可以發現網址的格式是

前面是處理請求的地址,後面接的參數purpose_codes是指成人票(AADULT),學生票(自己去試試吧),queryDate就是日期,from_station和to_station顧名思義就是出發站和到達站了。這裡北京和武漢分別表示為BJP和WHN。

到java代碼裡就可以直接寫https請求來擷取火車票參考資料集了

複製代碼 代碼如下:

public static List<NewTrain> getmsg(String startCity,String endCity,int isAdult) throws Exception{

        List<NewTrain> trains = new ArrayList<NewTrain>();

        String sstartCity = CityCode.format(startCity);
        String sendCity = CityCode.format(endCity);

        TrustManager[] tm = {new MyX509TrustManager()};
        SSLContext sslContext = SSLContext.getInstance("SSL", "SunJSSE"); 
        sslContext.init(null, tm, new java.security.SecureRandom()); 
        // 從上述SSLContext對象中得到SSLSocketFactory對象 
        SSLSocketFactory ssf = sslContext.getSocketFactory();
        String type = "ADULT";
        if(isAdult == 1){
            type = "0X00";
        }

    String urlStr = "https://kyfw.12306.cn/otn/lcxxcx/query?purpose_codes="+type+"&queryDate=2014-04-27&from_station="+sstartCity+"&to_station="+sendCity;

    URL url = new URL(urlStr);

    HttpsURLConnection con = (HttpsURLConnection) url.openConnection();
    con.setSSLSocketFactory(ssf);

    InputStreamReader in = new InputStreamReader(con.getInputStream(),"utf-8");

    BufferedReader bfreader = new BufferedReader(in);

    StringBuffer sb = new StringBuffer();

    String line = "";

    while ((line = bfreader.readLine()) != null) {
        sb.append(line);
    }
    System.out.println(sb.toString());
}


這段代碼的cityCode.format()是自己寫的將中文的站名轉換為字母組合,下面那幾行是關於https請求的。網址就是剛才擷取到的網址。這段代碼執行後得到的輸出內容如下:

很容易看出來這些資料是一條條的json資料(我進行了簡單的處理,讓他一條條列印出來)。

既然是json資料就好辦了。取出一條資料來進行分析就可以分析出來key值代表的意思。我只分析了幾個我需要的key值

然後就直接寫一個Train類來儲存火車票的資訊,便於之後顯示用了。

複製代碼 代碼如下:

public class NewTrain {

    private String to_station_name;    //到達地

    private String station_train_code;  //火車編號

    private String from_station_name;  //出發地

    private String start_time;   //出發時間 

    private String arrive_time;  // 到達時間

    private String lishi;  //  需要時間

    private String zy_num;  //   一等座數量

    private String ze_num;  //  二等座數量

    private String swz_num;  //   商務座數量

    private String gr_num;  //   進階軟臥數量

    private String rw_num;  //  軟臥數量

    private String rz_num;  //   軟座數量

     private String yw_num;  //   硬臥數量

    private String yz_num;  //   硬座數量

    private String tz_num;  //   特等座數量

    private String wz_num;   //   無座數量
}

接下來的工作就很簡單了,將json資料放入Train類對象中。

好了,基本工作完成了,接下來的工作就是將功能整合到項目裡去了。

這其中用到的中文站名跟字母組合的一個txt檔案(讀txt擷取中文站名對應的字母的組合,有一些可能不全

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.