求个java的HttpURLConnection发送get/post示例
要求:两个测试地址:http:/你/www.baidu.懂com/search/er的ror.html;http:/你/www.懂baidu.的com/两个地址分别是不同...
要求:
两个测试地址:http:/你/www.baidu.懂com/search/er的ror.html;http:/你/www.懂baidu.的com/
两个地址分别是不同编码的,要求不能出现乱码。
就算是网上找的也请实测以后再贴上来谢谢! 展开
两个测试地址:http:/你/www.baidu.懂com/search/er的ror.html;http:/你/www.懂baidu.的com/
两个地址分别是不同编码的,要求不能出现乱码。
就算是网上找的也请实测以后再贴上来谢谢! 展开
1个回答
展开全部
给你一个我项目中用到的HttpConnection类中的这个方法。
public static String getHttpResult(String urlget){
String result="";
try {
URL url = new URL(urlget);
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setDoOutput(true);
httpURLConnection.setDoInput(true);
httpURLConnection.setConnectTimeout(10000);
httpURLConnection.setRequestMethod("GET");
httpURLConnection.connect();
InputStreamReader bis = new InputStreamReader(httpURLConnection.getInputStream(),"utf-8");
int c = 0;
while((c = bis.read()) != -1){
result=result+(char)c;
}
}catch (Exception e) {
//e.printStackTrace();
System.out.println(urlget + " HTTP通信失败!");
result = "http error";
}
return result;
}
绝对能用。方法中有参数设置get/post。
还有设置编码格式(上述方法中的utf-8),可根据你的需要进行修改,来实现解决乱码的问题。
望采纳
public static String getHttpResult(String urlget){
String result="";
try {
URL url = new URL(urlget);
HttpURLConnection httpURLConnection = (HttpURLConnection) url.openConnection();
httpURLConnection.setDoOutput(true);
httpURLConnection.setDoInput(true);
httpURLConnection.setConnectTimeout(10000);
httpURLConnection.setRequestMethod("GET");
httpURLConnection.connect();
InputStreamReader bis = new InputStreamReader(httpURLConnection.getInputStream(),"utf-8");
int c = 0;
while((c = bis.read()) != -1){
result=result+(char)c;
}
}catch (Exception e) {
//e.printStackTrace();
System.out.println(urlget + " HTTP通信失败!");
result = "http error";
}
return result;
}
绝对能用。方法中有参数设置get/post。
还有设置编码格式(上述方法中的utf-8),可根据你的需要进行修改,来实现解决乱码的问题。
望采纳
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询