摘要:
在System类中提供了三个重定向标准输入/输出的方法static void setErr(PrintStream err) 重定向“标准”错误输出流static void setIn(InputStream in) 重定向“标准”输入流static void setOut(PrintStream 阅读全文
2016年1月27日
摘要:
jps 查看运行的java进程; jinfo <pid> 查看 jvm 配置参数 阅读全文
摘要:
text-overflow:ellipsis; white-space:nowrap; overflow:hidden 阅读全文
摘要:
mvn exec:java -Dexec.mainClass="com.java2s.ide.App" 阅读全文
2013年3月2日
摘要:
1 char a = '\u0000'; 2 int d = 0; 3 4 char c = a; 5 do { 6 d++; 7 d %= 64; 8 if (d + 1 == 64) { 9 System.out.println();10 }11 System.out.print(c);12 c++;13 } while (c != a); 阅读全文