如何使用Java中的代理获取URL连接?

如何使用Java中的代理获取URL连接?,第1张

如何使用Java中的代理获取URL连接?

添加答案以帮助将来的访客

Proxy proxy = new Proxy(Proxy.Type.HTTP, new InetSocketAddress("192.0.2.100", 80));HttpURLConnection connection =(HttpURLConnection)new URL("http://abc.example.com").openConnection(proxy);connection.setDoOutput(true);connection.setDoInput(true);connection.setRequestProperty("Content-type", "text/xml");connection.setRequestProperty("Accept", "text/xml, application/xml");connection.setRequestMethod("POST");


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

原文地址: http://outofmemory.cn/zaji/5489322.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-12
下一篇 2022-12-12

发表评论

登录后才能评论

评论列表(0条)

保存