zoukankan      html  css  js  c++  java
  • Java 读取网页简易程序

    package com.ibm.downloadtool;
    import java.io.BufferedInputStream;
    import java.net.HttpURLConnection;
    import java.net.URL;
    import java.util.Scanner;

    public class DownLoadTool {

        public static void main(String[] args) {
            // TODO Auto-generated method stub
            
            DownLoadTool d = new DownLoadTool();
            d.downLoadUrl("http://finance.sina.com.cn/");

        }
            //download
            public String downLoadUrl(String addr){
                StringBuffer sb=new StringBuffer();
                try {
                    URL url=new URL(addr);
                    HttpURLConnection con= (HttpURLConnection) url.openConnection();
                    con.setConnectTimeout(1000);
                    con.connect();
                    System.out.println(con.getResponseCode());
                    if(con.getResponseCode()==200){
                        BufferedInputStream bis=new BufferedInputStream(con.getInputStream());
                        Scanner sc=new Scanner(bis,"GBK");
                        while(sc.hasNextLine()){
                            sb.append(sc.nextLine());
                        }
                        sc.close();
                    }
                } catch (Exception e) {

                    e.printStackTrace();
                }
                System.out.println(sb.toString());
                return sb.toString();
            }
        }




  • 相关阅读:
    tf.py_func函数总结
    CS231N 常用激活函数
    CS231N 数据预处理(data proprecessing)
    RNN
    plt.subplot与subplot的区别
    Faster-rcnn代码中bbox_inside_weights的作用是什么
    Python基础之python数据结构
    asp.net分割字符串的几种方法
    .net后台获取HTML中select元素选中的值
    JQuery+Ajax制作省市联动
  • 原文地址:https://www.cnblogs.com/TendToBigData/p/10501473.html
Copyright © 2011-2022 走看看