google,baidu,bing网页搜索(java实现)

   日期:2024-12-26    作者:b932907 移动:http://ljhr2012.riyuangf.com/mobile/quote/23603.html
package web_search; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import java.io.UnsupportedEncodingException; import java.net.HttpURLConnection; import java.net.MalformedURLException; import java.net.URL; public class HtmlDownloader { public static void main(String[] args) { System.out .println(down("http://www.baidu.com/s?wd=runtime.exec%20%B5%C8%B4%FD%CD%CB%B3%F6&pn=90&tn=monline_4_dg")); } public static String down(String u) { return new Helper().fuck(u); } } class Helper { public String fuck(String u) { String[] p = new String[2]; p[0] = u; p[1] = ""; Thread thread = new T(p); thread.start(); synchronized (this) { try { int count = 100; while (count-- > 0) { this.wait(100); if (!thread.isAlive()) break; } } catch (Exception e) { } if (thread.isAlive()) thread.interrupt(); } return p[1]; } } class T extends Thread { static String user_agent_str = "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.6; rv:9.0) Gecko/20100101 Firefox/9.0"; String[] l; public T(String[] p) { l = p; } public void run() { String fu = l[0]; try { StringBuilder ret = new StringBuilder(); int HttpResult; URL url = new URL(fu); HttpURLConnection urlconn = (HttpURLConnection) url .openConnection(); // ������ // URLConnection // ��������ij��࣬����Ӧ�ó���� // URL // ֮���ͨ�����ӣ�ͨ���� // URL // �ϵ��� // openConnection // �����������Ӷ��� //urlconn.addRequestProperty("Accept-Language", "zh-cn"); urlconn.addRequestProperty("User-Agent", user_agent_str); urlconn.setFollowRedirects(true); urlconn.setInstanceFollowRedirects(false); urlconn.connect(); // ʹ�� connect ����������Զ�̶����ʵ������ HttpURLConnection httpconn = (HttpURLConnection) urlconn; // ÿ�� // HttpURLConnection // ʵ���������ɵ������

特别提示:本信息由相关用户自行提供,真实性未证实,仅供参考。请谨慎采用,风险自负。


举报收藏 0评论 0
0相关评论
相关最新动态
推荐最新动态
点击排行
{
网站首页  |  关于我们  |  联系方式  |  使用协议  |  隐私政策  |  版权隐私  |  网站地图  |  排名推广  |  广告服务  |  积分换礼  |  网站留言  |  RSS订阅  |  违规举报  |  鄂ICP备2020018471号