how to print object list to file with formatting in table format using java

后端 未结 2 1523
夕颜
夕颜 2021-01-13 02:25

I have to print list of objects to a text file with table format. For example, if I have list of Person(has getName,getAge and getAddress methods)objects, the text file shou

2条回答
  •  既然无缘
    2021-01-13 02:57

    Use printf with padded fields to achive column alignments.

    PrintWriter.printf to be specific

提交回复
热议问题