1楼:匿名用户
httpclient httpclient = new defaulthttpclient();
httpget httpget = new httpget("http://localhost/");
httpresponse response = httpclient.execute(httpget);
httpentity entity = response.getentity();
if (entity != null)
}大体上就是这样了。
2楼:你怕凡夫俗子吗
httpresponse response = httpclient.execute(httpget)
java用httpurlconnection(get) 模拟http请求 如何设置参数的编码
3楼:匿名用户
new url(url); 的时候 参数url就可以像js里一样 拼参数啊
至于编码 那就是url这个字符串 可以直接转编码啊
java http请求直接请求地址的**怎么写
4楼:火舞灬战天
public static string do_get(string url) throws clientprotocolexception, ioexception ";
defaulthttpclient httpclient = new defaulthttpclient();
try finally
return body;}
怎样用java实现模拟http请求,得到服务器的响应时间等参数
5楼:小童鞋_成
java.***.*;
publicclasshttpdemobr.close();
//获取参数:
stringvalue=getrequestproperty(stringkey);}}
怎样用java实现模拟http请求,得到服务器的响应时间等参数
6楼:mexico卡卡
java.***.*;
publicclasshttpdemobr.close();
//获取参数:
stringvalue=getrequestproperty(stringkey);}}
java?curl?http请求时间细节,怎么实现
7楼:杜爷1号
以下**
是java实现http的post、get、**访问请求,可以参考一下
package***.snowfigure.kits.***;
importjava.io.bufferedreader;
importjava.io.ioexception;
importjava.io.inputstream;
importjava.io.inputstreamreader;
importjava.io.outputstreamwriter;
importjava.io.unsupportedencodingexception;
importjava.***.httpurlconnection;
importjava.***.i***socketaddress;
importjava.***.proxy;
importjava.***.url;
importjava.***.urlconnection;
importjava.util.list;
importjava.util.map;
/***http请求工具类
*@authorsnowfigure
*@since2014-8-2413:30:56
*@versionv1.0.1
*/publicclasshttprequestutilcatch(unsupportedencodingexceptione)
returnresult;
}publicstaticstringurlencodegbk(stringsource)catch(unsupportedencodingexceptione)
returnresult;
}/**
*发起http请求获取返回结果
stringpara="key=youkeyid&youuid=uid&advert_type=int&domain=adf.ly&url=http://somewebsite.
***";
stringsr=httprequestutil.sendpost(url,para,true);
system.out.println(sr);}}
java调用http接口 get 接口的url怎么解决
8楼:匿名用户
http请求类
packagewzh.http;
importjava.io.bufferedreader;
importjava.io.ioexception;
importjava.io.inputstreamreader;
importjava.io.printwriter;
importjava.***.url;
importjava.***.urlconnection;
importjava.util.list;
importjava.util.map;
publicclasshttprequest
//定义bufferedreader输入流来读取url的响应
in=newbufferedreader(newinputstreamreader(
connection.getinputstream()));
stringline;
while((line=in.readline())!=null)
}catch(exceptione)
//使用finally块来关闭输入流
finally
}catch(exceptione2)
}returnresult;
}/**
*向指定url发送post方法的请求
**@paramurl
*发送请求的url
*@paramparam
*请求参数,请求参数应该是name1=value1&name2=value2的形式。
*@return所代表远程资源的响应结果
*/publicstaticstringsendpost(stringurl,stringparam)
}catch(exceptione)
//使用finally块来关闭输出流、输入流
finally
if(in!=null)
}catch(ioexceptionex)
}returnresult;
}}调用方法:
publicstaticvoidmain(stringargs)
java中如果别人用一段js脚本模拟我项目http请求,这种安全问题怎么解决? 20
9楼:匿名用户
js中,不算太好,因为跨域的问题。。。。。。。java.***.httpurlconnection方便~~~~