如何使用FixedFormat4j Java Library创建固定格式文件?

时间:2016-05-30 09:50:14

标签: java fixed-format

我能够以固定格式加载文件,但无法使用FixedFormat4j编写固定格式文件。

知道怎么做吗?

public class MainFormat {
public static void main(String[] args) {
    new MainFormat().start();
}
private FixedFormatManager manager;
public void start(){
    System.out.println("here");
    manager = new FixedFormatManagerImpl();
    try {
        BufferedReader br = new BufferedReader(new FileReader("d:/myrecords.txt"));
        System.out.println("here1");
        String text;
        MyRecord mr = null;
        while ((text = br.readLine()) != null) {
          mr = manager.load(MyRecord.class, text);
            System.out.println(""+mr.getAddress() + " - "+mr.getName());
        }
        mr.setName("Rora");
        manager.export(mr);

    } catch (IOException | FixedFormatException ex) {
        System.out.println(""+ex);
    }
}
}

我看过导出方法但不了解如何使用它?上面的代码没有任何反应

1 个答案:

答案 0 :(得分:0)

导出方法返回表示编组记录的字符串。

在您的代码中,您需要将export命令的结果写出到FileWriter。所以:

在while循环之前:

FileWriter fw = new FileWriter("d:/myrecords_modified.txt", true);
BufferedWriter bw = new BufferedWriter(fw);

while循环之后:

mr.setName("Rora");
String modifiedRecord = manager.export(mr);
bw.write(modifiedRecord);