- 浏览: 87597 次
- 性别:
- 来自: 成都
最新评论
-
kazy:
挺有意思的
Java 泛型 内部链式存储机制 -
qingchengbuzai:
谢谢分享,但有个问题向请教下,用android:theme=& ...
Android 系统自带样式Android:theme
文章列表
URL url = new URL(path);
// GET 必须大写
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestMethod("GET");
// 超时 5秒
conn.setReadTimeout(5 * 1000);
InputStream is = conn.getInputStream();
...