用Java阅读网页

Posted

tags:

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

Connects to a web page, reads in the content and strips whitespace.
  1. public String readURL(String address) throws Exception
  2. {
  3. URL url = new URL(address);
  4. HttpURLConnection conn = (HttpURLConnection)url.openConnection();
  5. conn.setReadTimeout(5000);
  6. conn.setConnectTimeout(5000);
  7.  
  8. byte[] buff = new byte[1024];
  9. InputStream in = conn.getInputStream();
  10. int read;
  11.  
  12. while((read = in.read(buff)) != -1)
  13. out.write(buff, 0, read);
  14.  
  15. return out.toString().replaceAll("[\s]+", " ");
  16. }

以上是关于用Java阅读网页的主要内容,如果未能解决你的问题,请参考以下文章

如何从带有按钮的片段中打开网页视图中的网页?

JSP基础

用HTML制作一个简单页面(代码阅读练习)——零基础自学网页制作

java 代码片段

java代码在片段活动中不起作用

HTML代码片段