Home  >  Q&A  >  body text

io - java file operation, how to insert content (not replace content) to a specified location?

Java file operation, how to insert content into the specified location (not replace content)?

大家讲道理大家讲道理2686 days ago812

reply all(2)I'll reply

  • phpcn_u1582

    phpcn_u15822017-06-12 09:26:18

    There is no real insertion of files because the file size is determined. So the source file can only be replaced with a temporary file.

    public void insert(String filename, long offset, byte[] content) {
      RandomAccessFile r = new RandomAccessFile(new File(filename), "rw");
      RandomAccessFile rtemp = new RandomAccessFile(new File(filename + "~"), "rw");
      long fileSize = r.length();
      FileChannel sourceChannel = r.getChannel();
      FileChannel targetChannel = rtemp.getChannel();
      sourceChannel.transferTo(offset, (fileSize - offset), targetChannel);
      sourceChannel.truncate(offset);
      r.seek(offset);
      r.write(content);
      long newOffset = r.getFilePointer();
      targetChannel.position(0L);
      sourceChannel.transferFrom(targetChannel, newOffset, (fileSize - offset));
      sourceChannel.close();
      targetChannel.close();
    }
    

    https://stackoverflow.com/que...

    reply
    0
  • 怪我咯

    怪我咯2017-06-12 09:26:18

    Please refer to this:

    https://faceghost.com/questio...

    reply
    0
  • Cancelreply