从文件中读取特定页面
Read specific page from a File
我正在尝试将文件的特定页面读入 Byte[]。我试过以下代码..
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.Path;
Path path = Paths.get("path/to/file");
byte[] data = Files.readAllBytes(path);
和
import java.io.RandomAccessFile;
RandomAccessFile f = new RandomAccessFile(fileName, "r");
byte[] b = new byte[(int)f.length()];
f.read(b);
但我不确定文件class是否可以识别文件中的页面。所以任何人都可以建议我应该怎么做,将不胜感激。
谢谢。
我正在尝试将文件的特定页面读入 Byte[]。我试过以下代码..
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.Path;
Path path = Paths.get("path/to/file");
byte[] data = Files.readAllBytes(path);
和
import java.io.RandomAccessFile;
RandomAccessFile f = new RandomAccessFile(fileName, "r");
byte[] b = new byte[(int)f.length()];
f.read(b);
但我不确定文件class是否可以识别文件中的页面。所以任何人都可以建议我应该怎么做,将不胜感激。
谢谢。