I want to read text from excel file in J2SE using NetBeans. I found an article here about using Apache POI and JExcelApi, but I would prefer not depending on external packages. if possible, using only built-in Java packages.
It almost worked, but it gives me an exception error:
java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
Do I need to install any ODBC driver (if so, which driver and how to install it)? What is the easiest way to solve this problem? please help, thanks in advance
source
share