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

📄 rot13cryptinputstream.java

📁 exploring Java 2ed edition 附带的例子程序
💻 JAVA
字号:
package exploringjava.protocolhandlers.crypt;import java.io.*; class rot13CryptInputStream extends CryptInputStream {     public void set( InputStream in, OutputStream out ) {        this.in = new exploringjava.io.rot13InputStream( in );    }    public int read() throws IOException {        return in.read();    }}

⌨️ 快捷键说明

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