首頁  >  文章  >  Java  >  在Java 9中何時使用InputStream的readNBytes()方法?

在Java 9中何時使用InputStream的readNBytes()方法?

王林
王林轉載
2023-08-30 09:21:02909瀏覽

在Java 9中何时使用InputStream的readNBytes()方法?

Since Java 9, the readNBytes() method can be added to the InputStream class. This method reads the requested number of bytes from an input stream into the given byte array. This method blocks until len bytes of input data have read, end of a stream is detected, or an exception is have read, end of a stream is detected, or an exception is thrown. readNBytes() method doesn't close an input stream. This method can be useful to avoid memory #problems with large files.

Syntaxx

#problems

with large files.

Syntax

<strong>public int readNBytes(byte[] b, int off, int len) throws IOException</strong>

在下面的範例中,我們在來源資料夾中建立了一個名為「

Technology.txt

」的文件,其中包含簡單的資料:

{ "JAVA", "PYTHON", "JAVASCRIPT", "SELENIUM", "SCALA"}。

範例###
import java.io.*;
import java.util.stream.*;
import java.nio.*;
import java.nio.file.*;

public class InputStreamReadNByteMethodTest {
   InputStream inputStream = nputStreamReadNByteMethodTest.class.<strong>getResourceAsStream</strong>("Technology.txt");

   public void testReadNBytes() throws Exception {
      final byte[] data = new byte[10];
      inputStream.<strong>readNBytes</strong>(data, 0, 7);
      System.out.println(new String(data));
   }
   public static void main(String args[]) throws Exception {
      InputStreamReadNByteMethodTest t = new InputStreamReadNByteMethodTest();
      t.testReadNBytes();  
   }
}
###輸出###
<strong>"JAVA",</strong>
###

以上是在Java 9中何時使用InputStream的readNBytes()方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除