in Java, suppose I have a text file with n rows, is it possible to only write and replace row x? or do I rewrite all the rows in order to edit any row?
It seems that I have use RandomAccess File to read x-1 lines, and then call
f.writeChars(str+"\n");
would this work? but also it won't delete the existing xth line..