I am aiming to only use the java API in order to accomplish this. I know that for other languages such as c and matlab, there are specific functions/methods that can do this. However, I'm unable to find a specific class in the java API that may help me complete my task. I am simply aiming to read from one excel file and using some of the information in the file I am trying to create another excel file after analyzing some of its data.
Asked
Active
Viewed 1,767 times
1 Answers
0
You can use Apache POI .Specifically the HSSF module. A quick guide is there. And this is a past discussion on this topic. How to read and write excel file in java
-
I'm aiming to only use the java API though. Using Apache POI would force me to use that API. – El Fufu Jan 07 '16 at 03:03
-
2In order to do this with "only" the Java API, you would have to read the file in the raw, and interpret its format with your own Java code. Be prepared to spend many months figuring it out. I don't know if the format is published anywhere, it would not surprise me if it is not. Your 'goal' to use only the Java API is strange, practically nothing significant anywhere is developed these days without some kind of library. – arcy Jan 07 '16 at 03:24