摘要:
在cmd中:javac Hello.java 编译然后运行:java HelloWorld 运行传参数给main的话,就在运行的时候传:java HelloWorld 参数1,参数2.。。。 阅读全文
摘要:
//可以向文件里写数据 import java.io.FileNotFoundException; import java.io.PrintStream; public class TestPrintStream1 { public static void main(String[] args) { try { PrintStream out = System.out; PrintStream ps = new PrintStream("./log.txt"); System.setOut(ps); int age = 11; System.out.println(&quo 阅读全文