📄 debug.java
字号:
package debug;
import java.io.*;
public class Debug
{
private Exception e;
public void setException(Exception e) throws IOException,FileNotFoundException
{
File file=new File("d:\\debug.txt");
file.createNewFile();
System.setOut(new PrintStream(file));
System.out.println(e.toString());
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -