java swing 如何通过 WEB 链接访问 ,获得WEB应用内容。

如题所述

第1个回答  2012-03-27
public static String sendURL(String str) {
// TODO Auto-generated method stub
try {
// 构造HttpClient的实例
HttpClient httpClient = new HttpClient();
// 创建GET方法的实例
GetMethod getMethod = new GetMethod(
str);
// 使用系统提供的默认的恢复策略
getMethod.getParams().setParameter(HttpMethodParams.RETRY_HANDLER,
new DefaultHttpMethodRetryHandler());
try {
// 执行getMethod
int statusCode = httpClient.executeMethod(getMethod);
if (statusCode != HttpStatus.SC_OK) {
System.err.println("Method failed: "
+ getMethod.getStatusLine());
}
// 读取内容
byte[] responseBody = getMethod.getResponseBody();
// 处理内容
return (new String(responseBody));
} catch (HttpException e) {
System.err.println(e.toString());
// 发生致命的异常,可能是协议不对或者返回的内容有问题
e.printStackTrace();
} catch (IOException e) {
// 发生网络异常
System.err.println(e.toString());
e.printStackTrace();
} finally {
// 释放连接
getMethod.releaseConnection();
System.out.println(6);
}
System.out.println(5);
} catch (Exception ex) {
ex.printStackTrace();
}
return null;
}
这个方法能够返回带入的URL的网页内容,需要加httpClient包本回答被提问者采纳
第2个回答  2012-03-29
通过url
相似回答