I am currently developing a small application that reads and writes excel files for a form of sales report. This is all well and good, and the reading and writing works perfectly. The issue I am running into is that this needs to be exported as an executable .jar to run from the desktop of other computers. Exporting the .jar is simple, however when ran on a different computer, anytime one of my classes (i.e. "ExcelReader.java") reaches a point in the code that utilizes the Apache POI, the class crashes, but does not crash the entire code, in that the Main class ("Launcher") will still move through its main method and execute another class as it comes along, still crashing classes as it reaches usage of Apache POI. Any help would be greatly appreciated, and help understanding this issue even more so.This is a screenshot of my launcher class. It will reach give me the first JOptionPane, then no give me any of the JOP's I have in reader. However, it will proceed to the second JOP in Launcher and give me writer's JOP's UP UNTIL the first line of Apache POI code:
Do the export boxes need to be highlighted for it to export with the jar file???