点击这里给我发消息 点击这里给我发消息

java 开发:WebClient,获取互联网资源

添加时间:2013-12-7
    相关阅读: 开发 互联网 程序 Windows 平台

    这段代码将向你介绍几个比较常见但需要注意的问题:

    1,尽量使用本地配置资源,比如 System.getProperty("line.separator") 代替手工输入 “\r\n”,以此解决跨平台问题(Windows、Mac等)。

    2,如何利用程序读取互联网上的文本资源,以及注意其文本编码(Encoding,这是本文的要点)。

    3,使用 StringBuilder 而不是“String 相加”获取一个较大的变长文本,这主要影响程序性能,而不是功能。

    功能极其有限,但对于初学者肯定有其碰壁之处,使用该包装好的类,可使用如下方式获取互联网文本资源:

    WebClient wc = new WebClient();

    String s = wc.getContent("http://localhost:8088/index.jsp", "utf-8", null); System.out.println(s);

    如下是WebClient类的源码:

    package queen.net;

    import java.net.URL; import java.net.URLConnection; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader;

    public class WebClient{

    private static String _newLine = System.getProperty("line.separator");

    public WebClient(){

    }

    public String getContent(String url, String oriEncoding, String targetEncoding) throws IOException{

    URL u = new URL(url);

    URLConnection uc = u.openConnection();

    BufferedReader in;

    if(oriEncoding == null || oriEncoding.length() == 0){ in = new BufferedReader(new InputStreamReader(uc.getInputStream()));

    }

    else{

    in = new BufferedReader(new InputStreamReader(uc.getInputStream(), oriEncoding));

    }

    String line;

    StringBuilder sb = new StringBuilder();

    while((line = in.readLine()) != null){ sb.append(line); sb.append(_newLine);

    }

    if(targetEncoding == null || targetEncoding.length() == 0){ return sb.toString();

    }

    return new String(sb.toString().getBytes(), targetEncoding);

    }

    }

咨询热线:020-85648757 85648755 85648616 0755-27912581 客服:020-85648756 0755-27912581 业务传真:020-32579052
广州市网景网络科技有限公司 Copyright◎2003-2008 Veelink.com. All Rights Reserved.
广州商务地址:广东省广州市黄埔大道中203号(海景园区)海景花园C栋501室
= 深圳商务地址:深圳市宝源路华丰宝源大厦606
研发中心:广东广州市天河软件园海景园区 粤ICP备05103322号 工商注册