- 博客(0)
- 资源 (5)
- 收藏
- 关注
Android图片处理
图片的处理方法,public static InputStream getRequest(String path) throws IOException {
URL url = new URL(path);
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
conn.setConnectTimeout(5000);
if (conn.getResponseCode() == 200) {
return conn.getInputStream();
}
2015-02-12
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人