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

Java面向对象程序设计第15章5

时间:2019-11-18 09:21:30      阅读:87      评论:0      收藏:0      [点我收藏+]

标签:page   stream   ESS   puts   input   static   null   com   rgs   

5. 利用URLConnetction对象编写程序返回某网站的首页,并将首页的内容存放到文件当中。

import java.net.*;
import java.io.*;

public class firstPage {
    public static void main(String[] args) throws IOException {
        URL url=  new URL("https://www.cnblogs.com/He-Fan/");
        URLConnection con = url.openConnection();
        BufferedReader is=  new BufferedReader(new InputStreamReader(con.getInputStream(), "UTF-8"));
        //三层括号由右往左,以指定字符集获得url的字节输入流,转换为字符输入流,按行读取,更高效
        FileOutputStream fos = new FileOutputStream("D:\\firstPage.html");//指定路径,它会自动新建一个文件
        String line;
        while((line = is.readLine()) != null ) {
            line = line + "\n";
            fos.write(line.getBytes("UTF-8"));//同样要指定字符集
            fos.flush();
        }
        System.out.println("Successful!");
        is.close();
        fos.close();
    }
}

Java面向对象程序设计第15章5

标签:page   stream   ESS   puts   input   static   null   com   rgs   

原文地址:https://www.cnblogs.com/He-Fan/p/11880160.html

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