0

当我使用一个Date对象并将其写入文件时,FFPojoHelper它会被打印为2112013which mean 21 Jan 2013。我想将文件写入为01/21/2013

FFPojoHelper ffpojo = FFPojoHelper.getInstance();
        for(MyClass DataLine != null) {
            String dataLine= ffpojo.parseToText(DataLine[i]);
            textFileWriter.write(dataLine);
            textFileWriter.newLine();
        }

文档https://github.com/ffpojo/ffpojo

4

1 回答 1