Java发送get请求时设置ua

Java发送get请求时设置ua,第1张

HttpClient方式发送请求或则以流的方式。

两种实现方式不同,怎么使用看个人喜好,不过在项目开发过程中,使用流的方式部署在预发机linux机器上会出现发送请求返回null的情况,但是本地windows却正常访问,而且,换另外一台预发机也能正常获取数据,目前还没有研究出个所以然,get是从服务器上获取数据,post是向服务器传送数据,get是把参数数据队列加到提交表单的ACTION属性所指的URL中,值和表单内各个字段一一对应,在URL中可以看到,post是通过HTTPpost机制,将表单内各个字段与其内容放置在HTML HEADER内一起传送到ACTION属性所指的URL地址。

/**

* 向指定 URL 发送POST方法的请求

*

* @param url

*发送请求的 URL

* @param param

*请求参数,请求参数应该是 name1=value1&name2=value2 的形式。

* @return 所代表远程资源的响应结果

*/

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

PrintWriter out = null

BufferedReader in = null

String result = ""

try {

URL realUrl = new URL(url)

// 打开和URL之间的连接

URLConnection conn = realUrl.openConnection()

// 设置通用的请求属性

conn.setRequestProperty("accept", "*/*")

conn.setRequestProperty("connection", "Keep-Alive")

conn.setRequestProperty("user-agent",

"Mozilla/4.0 (compatibleMSIE 6.0Windows NT 5.1SV1)")

// 发送POST请求必须设置如下两行

conn.setDoOutput(true)

conn.setDoInput(true)

// 获取URLConnection对象对应的输出流

out = new PrintWriter(conn.getOutputStream())

// 发送请求参数

out.print(param)

// flush输出流的缓冲

out.flush()

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

in = new BufferedReader(

new InputStreamReader(conn.getInputStream()))

String line

while ((line = in.readLine()) != null) {

result += line

}

} catch (Exception e) {

System.out.println("发送 POST 请求出现异常!"+e)

e.printStackTrace()

}

//使用finally块来关闭输出流、输入流

finally{

try{

if(out!=null){

out.close()

}

if(in!=null){

in.close()

}

}

catch(IOException ex){

ex.printStackTrace()

}

}

return result

}

实现思路就是先定义请求头内容,之后进行请求头设置。

定义请求头

LinkedHashMap<String,String>headers = new LinkedHashMap<String,String>()

headers.put("Content-type","text/xml")

headers.put("Cache-Control", "no-cache")

headers.put("Connection", "close")

给HttpPost 设置请求头

HttpPost httpPost = new HttpPost("地址")

if (headers != null) {

for (String key : headers.keySet()) {

httpPost.setHeader(key, headers.get(key))

}

}

备注:只需要在map中设置相应的请求头内容即可。根据实际需要修改即可


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

原文地址: http://outofmemory.cn/yw/12132071.html

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

发表评论

登录后才能评论

评论列表(0条)

保存