java调用url的两种方式

一、在java中调用url,并打开一个新的窗口 
Java代码   收藏代码
  1. String url="http://10.58.2.131:8088/spesBiz/test1.jsp";  
  2. String cmd = "cmd.exe /c start " + url;   
  3.   
  4. try {   
  5.  Process proc = Runtime.getRuntime().exec(cmd);   
  6.  proc.waitFor();   
  7. }  catch (Exception e)  {   
  8.  e.printStackTrace();  
  9. }





二、在java中调用url,后台调用。并取得返回值 
Java代码   收藏代码
  1. URL U = new URL("http://10.58.2.131:8088/spesBiz/test1.jsp");  
  2. URLConnection connection = U.openConnection();  
  3.    connection.connect();  
  4.     
  5.    BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));  
  6.    String line;  
  7.    while ((line = in.readLine())!= null)  
  8.    {  
  9.     result += line;  
  10.    }  
  11.    in.close();   


转自: http://yuanlijia1.iteye.com/blog/1088088

你可能感兴趣的:(java)