Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
XLS2CSVmra - Apache POI Excel File Example
What is XLS2CSVmra example in the Apache POI package? How to run XLS2CSVmra example?
✍: FYIcenter.com
XLS2CSVmra example in the Apache POI package is created by Nick Burch.
It works as an XLS to CSV (Comma Separated Value) processor, that uses the MissingRecordAware
EventModel code to ensure it outputs all columns and rows.
XLS2CSVmra example uses the HSSF (Horrible SpreadSheet Format) API, which supports Excel files in *.xls format only.
Here is the command to run XLS2CSVmra to convert workbook.xls generated by the BigExample into a CSV file:
C:\fyicenter>\local\jdk-1.8.0\bin\java
-cp .;C:\local\poi-3.15\poi-examples-3.15.jar;
C:\local\poi-3.15\poi-3.15.jar;
org.apache.poi.hssf.eventusermodel.examples.XLS2CSVmra
workbook.xls > workbook.csv
If you open the output file, workbook.csv, in Notepad editor, you will see data from rolumns and rows from the *.xls file are extracted and displayed in CSV format:
HSSF Test [1]: 0,"TEST",2,"TEST",4,"TEST",6.001,"TEST",8.001,"TEST",10.001,"TEST",... 10000.001,"TEST",10002.0012,"TEST",10004.0014,"TEST",10006.0016,"TEST",... 20,000.002,"TEST",20,002.002,"TEST",20,004.002,"TEST",20,006.003,"TEST",... 30000.003,"TEST",30002.0032,"TEST",30004.0034,"TEST",30006.0036,"TEST",... 40,000.004,"TEST",40,002.004,"TEST",40,004.004,"TEST",40,006.005,"TEST",... 50000.005,"TEST",50002.0052,"TEST",50004.0054,"TEST",50006.0056,"TEST",... 60,000.006,"TEST",60,002.006,"TEST",60,004.006,"TEST",60,006.007,"TEST",... ...
⇒ ScatterChart - Apache POI Excel File Example
⇐ BigExample - Apache POI Excel File Example
2017-03-11, ∼2451🔥, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 7? If you want to write Java applications, yo...
JDOM provides a solution for using XML from Java that is as simple as Java itself. There is no compe...
JDK 17 java.sql.jmod is the JMOD file for JDK 17 SQL (Structured Query Language) module. JDK 17 SQL ...
JDK 11 jdk.jdi.jmod is the JMOD file for JDK 11 JDI (Java Debug Interface) tool. JDK 11 JDI tool com...
JDK 11 jdk.crypto.mscapi.jmod is the JMOD file for JDK 11 Crypto MSCAPI module. JDK 11 Crypto MSCAPI...