Java: reading strings from a random access file with buffered input

后端 未结 7 1811
醉话见心
醉话见心 2020-12-14 12:40

I\'ve never had close experiences with Java IO API before and I\'m really frustrated now. I find it hard to believe how strange and complex it is and how hard it could be to

相关标签:
7条回答
  • 2020-12-14 13:19

    I think the confusion is caused by the UTF-8 encoding and the possibility of double byte characters.

    UTF8 doesn't specify how many bytes are in a single character. I'm assuming from your post that you are using single byte characters. For example, 412 bytes would mean 411 characters. But if the string were using double byte characters, you would get the 206 character.

    The original java.io package didn't deal well with this multi-byte confusion. So, they added more classes to deal specifically with strings. The package mixes two different types of file handlers (and they can be confusing until the nomenclature is sorted out). The stream classes provide for direct data I/O without any conversion. The reader classes convert files to strings with full support for multi-byte characters. That might help clarify part of the problem.

    Since you state you are using UTF-8 characters, you want the reader classes. In this case, I suggest FileReader. The skip() method in FileReader allows you to pass by X characters and then start reading text. Alternatively, I prefer the overloaded read() method since it allows you to grab all the text at one time.

    If you assume your "bytes" are individual characters, try something like this:

    FileReader fr = new FileReader( new File("x.txt") );
    char[] buffer = new char[ pos2 - pos ];
    fr.read( buffer, pos, buffer.length );
    ...
    
    0 讨论(0)
  • 2020-12-14 13:23

    Start with a RandomAccessFile and use read or readFully to get a byte array between pos1 and pos2. Let's say that we've stored the data read in a variable named rawBytes.

    Then create your BufferedReader using

    new BufferedReader(new InputStreamReader(new ByteArrayInputStream(rawBytes)))
    

    Then you can call readLine on the BufferedReader.

    Caveat: this probably uses more memory than if you could make the BufferedReader seek to the right location itself, because it preloads everything into memory.

    0 讨论(0)
  • 2020-12-14 13:29

    I'm late to the party here, but I ran across this problem in my own project.

    After much traversal of Javadocs and Stack Overflow, I think I found a simple solution.

    After seeking to the appropriate place in your RandomAccessFile, which I am here calling raFile, do the following:

    FileDescriptor fd = raFile.getFD();
    FileReader     fr = new FileReader(fd);
    BufferedReader br = new BufferedReader(fr);
    

    Then you should be able to call br.readLine() to your heart's content, which will be much faster than calling raFile.readLine().

    The one thing I'm not sure about is whether UTF8 strings are handled correctly.

    0 讨论(0)
  • 2020-12-14 13:31

    I wrote this code to read utf-8 using randomaccessfiles

    //File: CyclicBuffer.java
    public class CyclicBuffer {
    private static final int size = 3;
    private FileChannel channel;
    private ByteBuffer buffer = ByteBuffer.allocate(size);
    
    public CyclicBuffer(FileChannel channel) {
        this.channel = channel;
    }
    
    private int read() throws IOException {
        return channel.read(buffer);
    }
    
    /**
     * Returns the byte read
     *
     * @return byte read -1 - end of file reached
     * @throws IOException
     */
    public byte get() throws IOException {
        if (buffer.hasRemaining()) {
            return buffer.get();
        } else {
            buffer.clear();
            int eof = read();
            if (eof == -1) {
                return (byte) eof;
            }
            buffer.flip();
            return buffer.get();
        }
    }
    }
    //File: UTFRandomFileLineReader.java
    
    
    public class UTFRandomFileLineReader {
    private final Charset charset = Charset.forName("utf-8");
    private CyclicBuffer buffer;
    private ByteBuffer temp = ByteBuffer.allocate(4096);
    private boolean eof = false;
    
    public UTFRandomFileLineReader(FileChannel channel) {
        this.buffer = new CyclicBuffer(channel);
    }
    
    public String readLine() throws IOException {
        if (eof) {
            return null;
        }
        byte x = 0;
        temp.clear();
    
        while ((byte) -1 != (x = (buffer.get())) && x != '\n') {
            if (temp.position() == temp.capacity()) {
                temp = addCapacity(temp);
            }
            temp.put(x);
        }
        if (x == -1) {
            eof = true;
        }
        temp.flip();
        if (temp.hasRemaining()) {
            return charset.decode(temp).toString();
        } else {
            return null;
        }
    }
    
    private ByteBuffer addCapacity(ByteBuffer temp) {
        ByteBuffer t = ByteBuffer.allocate(temp.capacity() + 1024);
        temp.flip();
        t.put(temp);
        return t;
    }
    
    public static void main(String[] args) throws IOException {
        RandomAccessFile file = new RandomAccessFile("/Users/sachins/utf8.txt",
                "r");
        UTFRandomFileLineReader reader = new UTFRandomFileLineReader(file
                .getChannel());
        int i = 1;
        while (true) {
            String s = reader.readLine();
            if (s == null)
                break;
            System.out.println("\n line  " + i++);
            s = s + "\n";
            for (byte b : s.getBytes(Charset.forName("utf-8"))) {
                System.out.printf("%x", b);
            }
            System.out.printf("\n");
    
        }
    }
    }
    
    0 讨论(0)
  • 2020-12-14 13:31

    The java IO API is very flexible. Unfortunately sometimes the flexibility makes it verbose. The main idea here is that there are many streams, writers and readers that implement wrapper patter. For example BufferedInputStream wraps any other InputStream. The same is about output streams.

    The difference between streams and readers/writers is that streams work with bytes while readers/writers work with characters.

    Fortunately some streams, writers and readers have convenient constructors that simplify coding. If you want to read file you just have to say

        InputStream in = new FileInputStream("/usr/home/me/myfile.txt");
        if (in.markSupported()) {
            in.skip(1024);
            in.read();
        }
    

    It is not so complicated as you afraid.

    Channels is something different. It is a part of so called "new IO" or nio. New IO is not blocked - it is its main advantage. You can search in internet for any "nio java tutorial" and read about it. But it is more complicated than regular IO and is not needed for most applications.

    0 讨论(0)
  • 2020-12-14 13:33
    import org.apache.commons.io.input.BoundedInputStream
    
    FileInputStream file = new FileInputStream(filename);
    file.skip(pos1);
    BufferedReader br = new BufferedReader(
       new InputStreamReader(new BoundedInputStream(file,pos2-pos1))
    );
    

    If you didn't care about pos2, then you woundn't need Apache Commons IO.

    0 讨论(0)
提交回复
热议问题