1

我尝试在 txt 文件中搜索字符串并在其上方插入一些特定内容。可悲的是,输出看起来与我的预期完全不同。

有人可以给我一个提示吗?
这就是我有多远!

    String description= "filename.txt";
    String comparison="    return model;";
    RandomAccessFile output = null;
        try
        {
          output = new RandomAccessFile(description, "rw" );
          String line = null;
          while ((line = output.readLine()) != null) {
                  if (line.equals(comparison)){
                      //System.out.println("alt: "+line);
                      output.seek(output.getFilePointer()-line.getBytes().length);
                      output.writeChars("new stuff; \n");
                      //System.out.println("new: "+output.readLine());
                      }
          }
        }
        catch ( IOException e ) {
          e.printStackTrace();
        }
        finally {        
          if ( output != null ){ try { output.close(); } catch ( IOException e ) { e.printStackTrace(); }}
        }

这是我尝试阅读的文件:

/*filename.txt*/
    some longer content ~ 100kB

    return model;

    further content 

这就是我希望得到的

/*filename.txt*/
    some longer content ~ 100kB

    new stuff;

    return model;

    further content 
4

3 回答 3

2

文件不支持插入或删除除文件末尾以外的内容。(这不是 Java 的限制,而是操作系统的限制)

要插入文本,您必须重写文件(至少从您要更改的点开始) 最简单的解决方案是将内容复制到临时文件,根据需要更改/插入或删除,如果成功则替换原始文件.

于 2012-11-16T12:28:33.737 回答
1

使用两个文件。复制到您想要的行到新文件中。添加你的新行。然后再次将其余行复制到文件中。最后,将新文件的全部内容复制到旧文件中

于 2012-11-16T12:31:08.100 回答
0

首先:您要测试的字符串中有空格:

String comparison="    return model;";

比较这样的行会更好:

if (line.trim().equals(comparison.trim())){ ...

调用trim()将删除该行和比较字符串中的所有空格/制表符,因此如果某些文件使用制表符而不是空格或不同数量的空格,它也会匹配...

于 2012-11-16T12:30:18.887 回答