Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have requirement to import Excel file in MySQL database using Java. I Googled it and got the answer is to export CSV files from Excel then import it usingLOAD DATA LOCAL INFILE 'SampleData.csv' INTO TABLE databasetable FIELDS TERMINATED BY ','. It works nicely.

I have doubts why we convert Excel files to CSV then import file into an database. Is there is another technique to import Excel without converting into CSV?

Thanks

share|improve this question

2 Answers

up vote 2 down vote accepted

CSV is a plaintext file format showing the contents of the Excel file as Comma Separated Values (CSV)

This is done so that the Java program need not know how to parse the Excel Files themselves, which is a big bonus.

Consider the recent change that Office underwent with the Office 2007 release. Their new file format .xlsx was not backwards compatible with their former .xls format. This is because the .xlsx format compressed the contents.

If your program parsed the .xls files directly, it would have broken during this changeover. With the CSV conversion, you should be able to read any new Excel format for the foreseeable future.

share|improve this answer

Try Apache POI.

http://poi.apache.org/

More info on why POI is possibly better than JExcel and other alternatives:

Which is better open source for Excel file parsing in Java?

share|improve this answer
thanks for quick reply but i have different question "why we need to convert excel file into csv before import it into database?" – sam Jun 28 '11 at 12:21
See Peaches491's answer. However, in case you were saying I was answering the wrong question, from your original question: "Is there is another technique to import excel without converting into csv." That is what I answered. – Charles Goodwin Jun 28 '11 at 13:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.