ozymandias.java
来自「java版的数据结构的完全代码 免费提供了 学习数据结构的请下载」· Java 代码 · 共 16 行
JAVA
16 行
// 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 + =
减小字号Ctrl + -
显示快捷键?