2011-08-15 69 views
1

我使用Apache Tomcat 6.0.20 創建RESTful客戶端消費者,我想創建客戶端使用RESTful Web服務(使用GET)和Tomcat

我知道我可以通過與URLConnection的舊時尚的方式做到這一點(定期的GET請求)。

但我不知道是否有不同的做這件事的方法嗎?也許有註釋?

回答

-1

最後,我選擇了使用Java SE API中的舊的和時尚的方式:

public void getRestfullMethod(...) throws IOException 
    { 
     String temp = null; 

     //Build the request data. 
     StringBuffer buf = new StringBuffer (..) 
     buf.append("&system=").append ("someVal"); 

     String urlStr = buf.toString(); 

     //Send the request. 
     URL url = new URL (urlStr); 
     URLConnection con = url.openConnection(); 

     //Return the response. 
     BufferedReader in = new BufferedReader (new InputStreamReader (con.getInputStream())); 
     String inputLine = null; 

     buf = new StringBuffer(); 
     while ((inputLine = in.readLine()) != null) 
       buf.append (inputLine); 
     in.close(); 

    }