📄 ozymandias.java
字号:
// Introduced in Chapter 17import java.io.*;/** Class to demonstrate text file output. */public class Ozymandias { /** Print a string to a file. */ public static void main(String[] args) throws IOException { File file = new File("ozymandias.txt"); PrintWriter out = new PrintWriter(file); out.println("Look on my works, ye mighty, and despair!"); out.close(); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -