java 读取txt文件 想自定义从第几个字节开始读和读几个字节 怎么做??

2024-11-09 03:25:32
推荐回答(4个)
回答1:

1.想自定义从第几个字节开始读
使用java.io.RandomAccessFile类,可使用构造方法RandomAccessFile af=new RandomAccessFile("C:\\1.txt","r");如果想从第100个字节开始读,可使用其方法:public void seek(long pos),如af.seek(100);2.读几个字节所有的输入流都有方法:public int read(byte[] b,
int off,
int len)
假如你想一次读20个字节,可使用:byte b[] = new byte[100];input.read(b,0,20);然后使用String str = new String(b,0,20);得到你读取的内容

回答2:

        File file = new File("tcp.txt");
        FileInputStream stream = new java.io.FileInputStream(file);

        int pos = 10;//从第几个字节开始读
        int len = 15;//读几个字节
        stream.skip(pos); //跳过之前的字节数
        byte[] b = new byte[len];
        stream.read(b);
        System.out.print(new String(b));
        stream.close();

回答3:

Reader是字符流,你要读字节就是InputStream,JAVA不像.NET,没有直接读行的方法,只有自己判断,读到回车就行数+1。回车用 \n或者 0x0a 判断

回答4:

在读取的时候用skip()跳过多少个字符,然后再开始读~~~~~~~