Java 9 中的 InputStream 类中添加了 transferTo() 方法。该方法已用于复制Java 中从输入流到输出流的数据。这意味着它从输入流中读取所有字节,并按照读取的顺序将字节写入输出流。
语法
public long transferTo(OutputStream out) throws IOException
登录后复制
示例
import java.util.Arrays;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class TransferToMethodTest {
public void testTransferTo() throws IOException {
byte[] inBytes = "tutorialspoint".getBytes();
ByteArrayInputStream bis = new ByteArrayInputStream(inBytes);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
try {
bis.transferTo(bos);
byte[] outBytes = bos.toByteArray();
System.out.println(Arrays.equals(inBytes, outBytes));
} finally {
try {
bis.close();
} catch(IOException e) {
e.printStackTrace();
}
try {
bos.close();
} catch(IOException e) {
e.printStackTrace();
}
}
}
public static void main(String args[]) throws Exception {
TransferToMethodTest test = new TransferToMethodTest();
test.testTransferTo();
}
}
登录后复制
输出
true
登录后复制
以上就是在Java 9中,transferTo()方法的重要性是什么?的详细内容,更多请关注每日运维网(www.mryunwei.com)其它相关文章!