Create Excel file in Java

前端 未结 10 709
予麋鹿
予麋鹿 2020-12-02 15:23

I want to create an Excel file and write data just like writing a text file with Java. I tried to change file extension from .txt to .xls. But I wa

10条回答
  •  我在风中等你
    2020-12-02 15:54

    Flat files do not allow providing meta information.

    I would suggest writing out a HTML table containing the information you need, and let Excel read it instead. You can then use tags to do what you ask for.

提交回复
热议问题