Javascript FileReader.slice(startingByte, endindByte) 相当于 java
Javascript FileReader.slice(startingByte, endindByte) equivalent in java
参考以下规格:
https://www.w3.org/TR/FileAPI/#slice-method-algo
有一种方法FileReader.slice(startingByte, endindByte)
允许从特定的starting byte
到ending byte
读取文件,这在读取非常大的文件(1GB+)时非常有用。
java中的等效方法是什么?
参考以下规格:
https://www.w3.org/TR/FileAPI/#slice-method-algo
有一种方法FileReader.slice(startingByte, endindByte)
允许从特定的starting byte
到ending byte
读取文件,这在读取非常大的文件(1GB+)时非常有用。
java中的等效方法是什么?