标签:java基础 odi class .com ref nts ons hook flow
PrintStream myStream = new PrintStream(System.out) { @Override public void println(String x) { super.println(System.currentTimeMillis() + ": " + x); } }; System.setOut(myStream); System.out.println("Hello World!"); ------------------------------------------------------------------------------- Output: 1420553422337: Hello World!
参考:http://stackoverflow.com/questions/27800326/hook-into-system-out-println-and-modify
标签:java基础 odi class .com ref nts ons hook flow
原文地址:http://www.cnblogs.com/EasonJim/p/6219322.html