I have a java project in eclipse workspace which will create excel sheets with data. I have exported my whole project as a executable jar file which runs with the help of JVM on double clicking on the jar file. I can see a new process with javaw.exe getting created under the Processes tab in windows task manager, once double clicked on the jar. Question is, how to know if my java code has run and created the excel sheet with data.
I know, I can extract the jar content and check if the excel file is generated or not but I don't want to extract the jar all the time just to know if the code has done it's job or not.
Or is there another way to run my jar so that I can view the code getting executed?
I have no idea on this point, so no case of code research I can share with you.
Thanks in advance!!