使用java连接的Twitter请求失败

时间:2012-05-23 06:12:24

标签: java twitter

我可以在没有cURL问题的情况下提取用户的状态,但是当我连接Java时,xml会被截断并且我的解析器想要哭。我正在测试小用户,所以它不会阻塞数据或任何东西。

public void getRuserHx(){
 System.out.println("Getting user status history...");

 String https_url = "https://twitter.com/statuses/user_timeline/" + idS.rootUser + ".xml?count=100&page=[1-32]";
 URL url;
 try {    
     url = new URL(https_url);
     HttpsURLConnection con = (HttpsURLConnection)url.openConnection(); 
     con.setRequestMethod("GET");
     con.setReadTimeout(15*1000);

     //dump all the content into an xml file
     print_content(con);

 } 
 catch (MalformedURLException e) {
     e.printStackTrace();
 } 
 catch (IOException e) {
     e.printStackTrace();
 }

 System.out.println("Finished downloading user status history.");

}

private void print_content(HttpsURLConnection con){
    if(con!=null){

    try {           
       BufferedReader br = new BufferedReader(new InputStreamReader(con.getInputStream()));

          File userHx = new File("/" + idS.rootUser + "Hx.xml");
          PrintWriter out = new PrintWriter(idS.hoopoeData + userHx);

           String input;        
           while ((input = br.readLine()) != null){
           out.println(input);
           }

       br.close();  
    } 
    catch (IOException e) {
       e.printStackTrace();
    }

}

此请求不需要身份验证。抱歉我的丑陋代码。我的教授说输入并不重要,所以我的I / O是一个火车残骸。

1 个答案:

答案 0 :(得分:1)

您必须在写出内容时刷新输出流。您是否刷新或关闭了输出流?