码迷,mamicode.com
首页 > 编程语言 > 详细

java获取html源码代码

时间:2014-09-22 19:23:43      阅读:281      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   java   ar   for   2014   on   c   

package com.test.brouse;

import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;

public class Html {

	/**
	 * @param args
	 * @throws IOException 
	 * @throws MalformedURLException 
	 */
	public static void main(String[] args) throws MalformedURLException, IOException {
		// TODO Auto-generated method stub
			InputStream in=(new URL("http://www.baidu.com")).openStream();
			int c=-1;
			while((c=in.read())!=-1)
			{
				System.out.write(c);
			}
	}

}

输出结果为

bubuko.com,布布扣

java获取html源码代码

标签:blog   http   io   java   ar   for   2014   on   c   

原文地址:http://blog.csdn.net/itbuluoge/article/details/39478003

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!