How to convert a pdf file into CSV file?

后端 未结 1 1466
孤独总比滥情好
孤独总比滥情好 2021-01-14 05:40

I want to convert a PDF file into a CSV file. I am using iText library for this. The program is working fine but the output is not in desired format. All the data is coming

相关标签:
1条回答
  • 2021-01-14 06:26

    You need to introduce a line break '\n' in the buffer after each table row.

    buffer.append("\n");
    
    0 讨论(0)
提交回复
热议问题