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

I am having an issue with Excel not saving my files properly. I have a list of data which is organized into three columns: String String INt.

I want to read this file into a Java program to perform some calculations. Excel exporting as a .csv file causes me to lose significant data as a result of the native UTF-8 encoding. I can save it as a UTF-16 .txt file however, I get another annoying result. If i insert columns of commas between each field field it saves the commas with quotes around it! I have seen some solutions to this problem but they do not preserve the UTF-16 encoding.

Any help would be greatly appreciated.

share|improve this question
2  
If I were you, instead of converting to csv, which, as you have experienced, can be tricky, I would use the Apache POI library and read directly from xlsx. For the case you mentioned, it should be simple enough. I have done this in the past, and it handles UTF-8 well. – Eduardo Oct 22 '12 at 21:00
I don't have any experience with the Apache POI but a brief look over their website sure looks promising. So long as I can extract UTF-16 and ASCII characters using the the library it should work out. – vckngs7 Oct 23 '12 at 18:27
I use it all the time with UTF-16, with Eastern European character sets and it works really well. – Eduardo Oct 23 '12 at 19:43

1 Answer

Is this a one time thing or are you doing it as part of a larger program? If it's a one time thing you can just do a find and replace on the "," in any text editor.

share|improve this answer
I have thought of the replace option. As of right now it is a one time problem but I suspect I will encounter this problem again. – vckngs7 Oct 23 '12 at 18:25
If it is not part of a larger program - then just do a find and replace on the text file. Takes two seconds. Should be simple as that. Notepad++ is a great text editor. Otherwise you can probably just do it in MS Notepad or Wordpad. Good Luck. – Stepan1010 Oct 23 '12 at 18:33

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.