反转属性文件内容

时间:2015-06-26 07:03:58

标签: java ant properties-file

我有一个属性文件(例如exmp.properties)就是这样的

1. k5=500
2. k4=400
3. k3=300
4. k2=200
5. k1=100

我需要反转此文件的内容,如

1. k1=100
2. k2=200
3. k3=300
4. k4=400
5. k5=500

有什么办法可以使用ANT任务或Java代码实现这个目标吗?

3 个答案:

答案 0 :(得分:1)

你需要做这样的事情:

String input = "in.txt";
String output = "out.txt";

try (FileWriter fw = new FileWriter(output)) {
    //read all lines
    List<String> lines = Files.readAllLines(Paths.get(input), Charset.defaultCharset());

    //clear contents of the output file
    fw.write("");
    //write all lines in reverse order
    for (int i = lines.size() - 1; i >= 0; i--) {
        fw.append(lines.get(i) + System.lineSeparator());
    }
} catch (Exception e) {}    

这将读取文件的所有行,然后以相反的顺序写入它们。

答案 1 :(得分:0)

这只是一个文本文件。 “Read in the file line by line”“reverse it”和“write to the file again”。

答案 2 :(得分:0)

这是一个loadresource和嵌套filterchain的解决方案 为了使其正常工作,您的属性文件需要在最后一个属性后面换行,意味着:

k5=500
k4=400
k3=300
k2=200
k1=100
-- empty line --

摘录:

<project>
 <loadfile property="unsorted" srcfile="foobar.properties"/>
 <echo>unsorted: ${line.separator}${unsorted}</echo>

 <loadresource property="sorted">
  <string value="${unsorted}" />
   <filterchain>
    <sortfilter />
   </filterchain>
 </loadresource>
 <echo>sorted: ${line.separator}${sorted}</echo>
 <!-- write file -->
 <echo file="foobar_sorted.properties">${sorted}</echo>
</project>

输出:

[echo] unsorted:
[echo] k5=500   
[echo] k4=400   
[echo] k3=300   
[echo] k2=200   
[echo] k1=100   
[echo] sorted:  
[echo] k1=100   
[echo] k2=200   
[echo] k3=300   
[echo] k4=400   
[echo] k5=500