替换文件中的某些行

时间:2013-09-19 16:09:13

标签: java eclipse file java.util.scanner writer

我有一个扫描仪读取的文件,然后在一个新文件中,我的编写器复制了它的一部分,并替换了我想要编辑的行。

我在某些特定行中遇到问题,我想从stringarray [Ddd,Eee,...]添加一些元素。

我的问题是我无法让扫描仪和文件编写者确定我想要转移元素的确切位置。它们需要低于"downstream_rm",介于/和/之间,并且还需要替换旧文本。

实施例/目标:

旧文件行:

 ....
    downstream_rm(j,l) ...
                / Aaa.(bbb)
                    Bbb.(ccc)  /
    ....

新文件行:

 ...
    downstream_rm(j,l( ....
         / str1 
             str2
               ... /

我试过这段代码,但没有得到理想的结果,因为它也保留了旧文本:

public static void main(String[] args) {

File file = new File();
File filenew = new File();

        try {


                    PrintWriter out = new PrintWriter(new FileWriter(filenew, true));
                    Scanner scanner = new Scanner(file);




                           while (scanner.hasNextLine()) {
                               String line = scanner.nextLine();


        if(line.contains("downstream_rm(j,l)")) {

                                           scanner.nextLine();   // so that the line with "downstream" wont be deleted

                                           String raw = "" ;


                                           for (int index = 0; index < strarray.size(); index++) {

                                                  String s = strarray.get(index);
                                                   raw = raw + "\n" + s;
                                               }

                                        line = "/"+raw+"/" ; } 
             out.write(line);
        out.write("\n");

                         }
                       out.flush();
                       out.close();
                       scanner.close();


            } catch (IOException e)  {
                e.printStackTrace();


            }
          }
    }

也尝试了这个,但它没有打印任何新内容:

        if(line.contains("downstream_rm(j,l)")){

                               scanner.nextLine();

                               String raw = "" ;


                               for (int index = 0; index < strarray.size(); index++) {

                                      String s = strarray.get(index);
                                       raw = raw + "\n" + s;
                                   }

                        String raw2 = raw.replaceAll(",", "");

                               line = line.replaceAll("/.*?/", "/"+raw2+"/");
                               }  
    out.write(line);
out.write("\n");

1 个答案:

答案 0 :(得分:2)

你的代码没有做到应该做的事,因为在行

 line = line.replaceAll("/.*?/", "/"+raw2+"/");
来自引用“line”的

字符串与正则表达式不匹配,因此它不会替换

这是您的需求

if (line.contains("downstream_rm(j,l)")) {
            String replacement = line;
            while (!replacement.matches(".*?/.*?/.*?")) {
                replacement += scanner.nextLine();
            }
            String raw = "";
            for (int index = 0; index < strarray.size(); index++) {

                String s = strarray.get(index);
                raw = raw + "\n" + s;
            }
            String raw2 = raw.replaceAll(",", "");
            line = replacement.replaceAll("/.*?/", "/" + raw2 + "/");
        }

只需确保你的“raw2”变量指向正确的String对象,并且在结果变量行中将包含替换的字符串