⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rhymingwords.java

📁 初期JAVA学习非常有用的资料。帮助深入了解API。特别是Applet。
💻 JAVA
字号:
import java.io.*;public class RhymingWords {    public static void main(String[] args) throws IOException {        DataInputStream words = new DataInputStream(				    new FileInputStream("words.txt"));        // do the reversing and sorting        InputStream rhymedWords = reverse(sort(reverse(words)));        // write new list to standard out        DataInputStream in = new DataInputStream(rhymedWords);        String input;        while ((input = in.readLine()) != null)            System.out.println(input);        in.close();    }    public static InputStream reverse(InputStream source) throws IOException {        DataInputStream in = new DataInputStream(source);        PipedOutputStream pipeOut = new PipedOutputStream();        PipedInputStream pipeIn = new PipedInputStream(pipeOut);        PrintStream out = new PrintStream(pipeOut);        new ReverseThread(out, in).start();        return pipeIn;    }    public static InputStream sort(InputStream source) throws IOException {        DataInputStream in = new DataInputStream(source);        PipedOutputStream pipeOut = new PipedOutputStream();        PipedInputStream pipeIn = new PipedInputStream(pipeOut);        PrintStream out = new PrintStream(pipeOut);        new SortThread(out, in).start();        return pipeIn;    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -