Reputation: 439
is it possible to import text file in excel with Java?
i have a text file with some value, years...etc If i want to import this text file, i have to open excel and then import it. but i want to do it with java
any help thank you
Upvotes: 0
Views: 2254
Reputation: 340733
You can create both XLS and XLSX files in plain Java using Apache POI library. It also allows you to read Excel files.
Of course you can also format your text files as CSV and let MS Excel open it - most of the time it should work.
Upvotes: 4