我需要在文件直接访问的文件中交换两行的位置。
我文件中的所有行都具有相同的字节大小,我知道每行在哪里,因为它们的大小相同,但是我需要直接指向它们而不浏览所有文件。
所以我需要知道如何将自己定位在那里以及如何阅读和删除它们,我真的找不到我理解的解决方案。
预先感谢。
示例:我想交换第二和第四行。
文件内容:
1;first line ; 1
2;second line ; 1
3;third ; 2
4;fourth ; 2
5;fifth ; 2
应该如何外观:
1;first line ; 1
4;fourth ; 2
3;third ; 2
2;second line ; 1
5;fifth ; 2
纯粹的教育示例。不要在生产中使用类似的东西。改用库。无论如何,遵循我的评论。
文件示例
ciaocio=1
edoardo=2
lolloee=3
目标
ciaocio=1
lolloee=3
edoardo=2
final int lineSeparatorLength = System.getProperty("line.separator").getBytes().length;
// 9 = line length in bytes without separator
final int lineLength = 9 + lineSeparatorLength;
try (final RandomAccessFile raf = new RandomAccessFile(file, "rw")) {
// Position the cursor at the beginning of the first line to swap
raf.seek(lineLength);
// Read the first line to swap
final byte[] firstLine = new byte[lineLength];
raf.read(firstLine);
// Position the cursor at the beginning of the second line
raf.seek(lineLength * 2);
// Read second line
final byte[] secondLine = new byte[lineLength];
raf.read(secondLine);
// Move the cursor back to the first line
// and override with the second line
raf.seek(lineLength);
raf.write(secondLine);
// Move the cursor to the second line
// and override with the first
raf.seek(lineLength * 2);
raf.write(firstLine);
}