码迷,mamicode.com
首页 > 编程语言 > 详细

java调用url的两种方式

时间:2017-01-11 10:25:40      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:res   except   nec   str   技术   wait   cep   roc   打开   

一、在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. }   
  8. catch (Exception e)   
  9. {   
  10.  e.printStackTrace();  
  11. }   




二、在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();  

java调用url的两种方式

标签:res   except   nec   str   技术   wait   cep   roc   打开   

原文地址:http://www.cnblogs.com/huoxiansudi/p/6272403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!