?? 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 + -