java获取网页源码

Posted 随意随性

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java获取网页源码相关的知识,希望对你有一定的参考价值。

获取网页的源码:

package com.atguigu.crud.controller;

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.MalformedURLException;
import java.net.URL;

public class ssssss {
      public static void main(String[] a){
            try {
                URL url=new URL("http://www.baidu.com");
                BufferedReader reader=new BufferedReader(new InputStreamReader(url.openStream()));
                BufferedWriter writer=new BufferedWriter(new FileWriter("index.html"));
                String line;
                while((line=reader.readLine())!=null){
                    System.out.println(line);
                    writer.write(line);
                    writer.newLine();
                }
                reader.close();
                writer.close();
            } catch (MalformedURLException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }

        }
}

 

以上是关于java获取网页源码的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

HTML代码片段

java获取网页源码

Android 在WebView中通过javascript获取网页源码,并在TextView或者在EditText中显示问题

java后台获取网页ajax数据和返回数据简单源码

Python爬虫之无法获取网页源码的解决方案详解