Java请求一个URL。获取网站返回的数据。

Java请求一个URL。获取网站返回的数据。,第1张

public static String SendGET(String url,String param){

   String result="";//访问返回结果

   BufferedReader read=null;//读取访问结果

   

   try {

    //创建url

    URL realurl=new URL(url+""+param);

    //打开连接

    URLConnection connection=realurlopenConnection();

     // 设置通用的请求属性

             connectionsetRequestProperty("accept", "/");

             connectionsetRequestProperty("connection", "Keep-Alive");

             connectionsetRequestProperty("user-agent",

                     "Mozilla/40 (compatible; MSIE 60; Windows NT 51;SV1)");

             //建立连接

             connectionconnect();

          // 获取所有响应头字段

             Map<String, List<String>> map = connectiongetHeaderFields();

             // 遍历所有的响应头字段,获取到cookies等

             for (String key : mapkeySet()) {

                 Systemoutprintln(key + "--->" + mapget(key));

             }

             // 定义 BufferedReader输入流来读取URL的响应

             read = new BufferedReader(new InputStreamReader(

                     connectiongetInputStream(),"UTF-8"));

             String line;//循环读取

             while ((line = readreadLine()) != null) {

                 result += line;

             }

   } catch (IOException e) {

    eprintStackTrace();

   }finally{

    if(read!=null){//关闭流

     try {

      readclose();

     } catch (IOException e) {

      eprintStackTrace();

     }

    }

   }

    

   return result; 

 }

因为URL采用ISO-8859-1编码,所以得把它转换成与页面相同的编码方式。

获取的值转码试试看

比如:

str=new String(strgetBytes("iso-8859-1"),("gb2312"));

自定义提交的话,肯定是要加字段的,类型选择公式,值是URL里的变量名就可以了。可能这么说题主有点不太懂,给您举个例子吧:URL=XXXA=1&B=2,那么自定义函数中填写代码的时候,用$A,$B就可以了。

以上就是关于Java请求一个URL。获取网站返回的数据。全部的内容,包括:Java请求一个URL。获取网站返回的数据。、java类中request.getParamater("a")获取jsp页面url传递的参数,编码问题。、帆软中java后台自定义提交怎么获得url中的参数等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9490295.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存