I’m developing a win32 C++ application that needs to export data to excel spreadsheets. There isn’t a mature C++ library for this, but exists for Java. How I can integrate a C++ application with Java code, in such way that I can call Java functions from my C++ application?
I’m developing a win32 C++ application that needs to export data to excel spreadsheets.
Share
You can also generate a simple html file, save it as .xls and excel will know to read it. e.g:
<table><tr><td>cell a</td><td>cell b</td></table>And then no need for executing Java and external programs.