Java 网络相关操作
import java.net.*; import java.io.*; public class URLReader { public static void main(String[] args) throws Exception { URL url = new URL("http://www.netkiller.cn/"); BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream())); String inputLine; while ((inputLine = in.readLine()) != null) System.out.println(inputLine); in.close(); } }
改变java.io.tmpdir的默认值
System.setProperty("java.io.tmpdir", "/vat/tmp"); System.out.println(System.getProperty("java.io.tmpdir"));
原文出处:Netkiller 系列 手札
本文作者:陈景峯
转载请与作者联系,同时请务必标明文章原始出处和作者信息及本声明。