Random Access of file
Input = Line number.
Outpu开发者_运维技巧t = Replace the line at given line number by new line.
example =
a.txt
aaaa
bbbb
cccc
input= line number=3 replace with dddd
output
aaaa
bbbb
dddd
Take a look at this tutorial and java.io.RandomAccessFile
精彩评论