📄 fileutil.java
字号:
// Copyright (c) 2003 Jython projectpackage org.python.core;import java.io.ByteArrayOutputStream;import java.io.InputStream;import java.io.IOException;/** * Utility methods for Java file handling. */public class FileUtil{ /** * Read all bytes from the input stream. * * Note that using this method to read very large streams could * cause out-of-memory exceptions and/or block for large periods * of time. */ public static byte[] readBytes( InputStream in ) throws IOException { final int bufsize = 8192; // nice buffer size used in JDK byte[] buf = new byte[ bufsize ]; ByteArrayOutputStream out = new ByteArrayOutputStream( bufsize ); int count; while( true ) { count = in.read( buf, 0, bufsize ); if ( count < 0 ) break; out.write( buf, 0, count ); } return out.toByteArray(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -