rot13cryptinputstream.java
来自「exploring Java 2ed edition 附带的例子程序」· Java 代码 · 共 15 行
JAVA
15 行
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 + =
减小字号Ctrl + -
显示快捷键?