HTTP URLConnection

来源:互联网 发布:ubuntu glib.h 编辑:程序博客网 时间:2024/06/01 10:30

HTTP URLConnection

代码块

try {  URL u = new URL("http://www.greenpeace.org/");  URLConnection uc = u.openConnection( );}catch (MalformedURLException ex) {  System.err.println(ex);}catch (IOException ex) {  System.err.println(ex);}
0 0