`
yng02yng
  • 浏览: 9178 次
最近访客 更多访客>>
社区版块
存档分类
最新评论

在java代码中设置代理使用代理服务器-我的读书笔记-iteye技术网站

 
阅读更多

在java代码中设置代理使用代理服务器-我的读书笔记-iteye技术网站
2011年07月01日
  import java.net.*; import java.io.*; public class URLReader { public static void main(String[] args) throws Exception { // Configure proxy ... System.setProperty("http.proxySet", "true"); System.setProperty("http.proxyHost", "proxy.nnnsssfff.com"); System.setProperty("http.proxyPort", "8080"); System.setProperty("http.proxyType", "4"); String proxyUser = "lv.hq", proxyPassword = "自己的密码!!!!!!!!!!!"; // Open URL ... URL url = new URL("http://www.google.com/"); URLConnection con = url.openConnection(); // proxy user and pass con.setRequestProperty("Proxy-Authorization", "Basic " + new sun.misc.BASE64Encoder() .encode((proxyUser + ":" + proxyPassword).getBytes())); BufferedReader in = new BufferedReader(new InputStreamReader(con .getInputStream())); // Read it ... String inputLine; while ((inputLine = in.readLine()) != null) System.out.println(inputLine); in.close(); } }
  
  
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics