如何在文件中交换两行的位置Java直接访问行

问题描述 投票:-1回答:1

我需要在直接访问它们的文件中交换两行的位置。

我文件中的所有行都有相同的字节大小,我知道每行都在哪里,因为它们都是相同的大小,但我需要直接指向它们而不经过所有文件。

所以我需要知道如何定位自己以及如何阅读和删除它们,我真的找不到我理解的解决方案。

提前致谢。

示例:我想交换第二行和第四行。

文件内容:

 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
java file data-access
1个回答
0
投票

纯粹教育的例子。不要在生产中使用类似的东西。请改用库。无论如何,请听我的评论。

文件示例

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);
}
© www.soinside.com 2019 - 2024. All rights reserved.