Android实现网络图片查看器和网页源码查看器(4)
来源:未知 责任编辑:责任编辑 发表时间:2015-09-09 15:30 点击:次
* @return
*/
public static String getHtml(String path) throws Exception{
URL url = new URL(path);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setConnectTimeout(5000);
conn.setRequestMethod("GET");
if(conn.getResponseCode() == 200){
byte[] data = StreamTool.read(conn.getInputStream());
return new String(data, "UTF-8");
}
return null;
}
}
作者“傅荣康专栏”
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>