java程序请求Http请求,返回其网页源文件,xml 等都可以返回
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
package com.sun.test;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import .MalformedURLException;
import .URL;
import javax.swing.JFrame;
public class Resol extends JFrame {
// 读取url对象所引用的web页
public void readPage(URL url) {
BufferedReader reader = null;
String line;
StringBuffer str = new StringBuffer();
try {
// 获取url输入流
reader = new BufferedReader(new InputStreamReader(url.openStream()));
// 读取一行,并添加至tPage中
while ((line = reader.readLine()) != null)
str.append(line);
} catch (IOException ie) {
} finally {
try {
if (reader != null)
reader.close();
} catch (Exception e) {
}
}
System.out.println(str.toString());
}
public static void main(String[] args) {
Resol me = new Resol();
try {
me.readPage(new URL("")); } catch (MalformedURLException e) {
e.printStackTrace();
}
}
}