Inserting text into an existing file via Java - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T08:39:50Zhttp://stackoverflow.com/feeds/question/289965http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/289965/inserting-text-into-an-existing-file-via-java4Inserting text into an existing file via JavaDinuk2008-11-14T12:44:50Z2009-09-24T07:55:54Z
<p>Hello,</p>
<p>I would like to create a simple program (in Java) which edits text files - particularly one which performs inserting arbitrary pieces of text at random positions in a text file. This feature is part of a larger program I am currently writing.</p>
<p>Reading the description about java.util.RandomAccessFile, it appears that any write operations performed in the middle of a file would actually overwrite the exiting content. This is a side-effect which I would like to avoid (if possible).</p>
<p>Is there a simple way to achieve this?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/289965/inserting-text-into-an-existing-file-via-java/289991#2899911Answer by bcash for Inserting text into an existing file via Javabcash2008-11-14T12:55:18Z2008-11-14T13:07:00Z<p>I believe the only way to insert text into an existing text file is to read the original file and write the content in a temporary file with the new text inserted. Then erase the original file and rename the temporary file to the original name.</p>
<p>This <a href="http://www.java-tips.org/java-se-tips/java.io/insert-a-line-in-a-file.html" rel="nofollow">example</a> is focused on inserted a single line into an existing file, but still maybe of use to you.</p>
http://stackoverflow.com/questions/289965/inserting-text-into-an-existing-file-via-java/289992#2899921Answer by Touko for Inserting text into an existing file via JavaTouko2008-11-14T12:55:33Z2008-11-14T12:55:33Z<p>I don't know if there's a handy way to do it straight otherwise than </p>
<ul>
<li>read the beginning of the file and write it to target</li>
<li>write your new text to target</li>
<li>read the rest of the file and write it to target.</li>
</ul>
<p>About the target : You can construct the new contents of the file in memory and then overwrite the old content of the file if the files handled aren't so big. Or you can write the result to a temporary file.</p>
<p>The thing would probably be easiest to do with streams, RandomAccessFile doesn't seem to be meant for inserting in the middle (afaik). Check the <a href="http://java.sun.com/docs/books/tutorial/essential/io/index.html" rel="nofollow">tutorial</a> if you need.</p>
http://stackoverflow.com/questions/289965/inserting-text-into-an-existing-file-via-java/289996#2899963Answer by Ken Gentle for Inserting text into an existing file via JavaKen Gentle2008-11-14T12:57:33Z2008-11-14T12:57:33Z<p>Well, no, I don't believe there is a way to avoid overwriting existing content with a single, standard Java IO API call.</p>
<p>If the files are not too large, just read the entire file into an ArrayList (an entry per line) and either rewrite entries or insert new entries for new lines.</p>
<p>Then overwrite the existing file with new content, or move the existing file to a backup and write a new file.</p>
<p>Depending on how sophisticated the edits need to be, your data structure may need to change.</p>
<p>Another method would be to read characters from the existing file while writing to the edited file and edit the stream as it is read.</p>
http://stackoverflow.com/questions/289965/inserting-text-into-an-existing-file-via-java/893384#8933841Answer by Zan Lynx for Inserting text into an existing file via JavaZan Lynx2009-05-21T15:00:02Z2009-09-24T07:55:54Z<p>If Java has a way to memory map files, then what you can do is extend the file to its new length, map the file, memmove all the bytes down to the end to make a hole and write the new data into the hole.</p>
<p>This works in C. Never tried it in Java.</p>
<p>Another way I just thought of to do the same but with random file access. </p>
<ul>
<li>Seek to the end - 1 MB</li>
<li>Read 1 MB</li>
<li>Write that to original position + gap size.</li>
<li>Repeat for each previous 1 MB working toward the beginning of the file.</li>
<li>Stop when you reach the desired gap position.</li>
</ul>
<p>Use a larger buffer size for faster performance.</p>
http://stackoverflow.com/questions/289965/inserting-text-into-an-existing-file-via-java/1468017#14680170Answer by saravana kumar for Inserting text into an existing file via Javasaravana kumar2009-09-23T19:08:29Z2009-09-23T19:08:29Z<p>If it is a text file,,,,Read the existing file in StringBuffer and append the new content in the same StringBuffer now u can write the SrtingBuffer on file. so now the file contains both the existing and new text.</p>