用Java阅读网页
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用Java阅读网页相关的知识,希望对你有一定的参考价值。
Connects to a web page, reads in the content and strips whitespace.
{ conn.setReadTimeout(5000); conn.setConnectTimeout(5000); byte[] buff = new byte[1024]; int read; while((read = in.read(buff)) != -1) out.write(buff, 0, read); return out.toString().replaceAll("[\s]+", " "); }
以上是关于用Java阅读网页的主要内容,如果未能解决你的问题,请参考以下文章