When I export my code as runnable JAR from eclipse all the files that I’ve set it to grab such as button images and other files are missing even though they are actually in the JAR. I’ve added getClass().getResource in front of the files but then when I try to run the JAR nothing even happens, any suggestions?
When I export my code as runnable JAR from eclipse all the files that
Share
Seems like you not putting your stuff in the right sense. In order to make it work, follow these steps :
ProjectinProject Explorer Tree.New -> Source Folderand then provide anyNameto theSource Folder.Source Folderso created by you, like if you want to add images then make aNew Folder, by manually visiting thisSource FolderthroughFile System.New Folderasimagesand copy your images to thisFolder.RefreshyourProjectfrom the Project Explorer, by Right Clicking your Project, here you be able to see your added content now after refreshing.Now in order to access, say any image, you will use.
which will return one URL object. Do remember the
first forward slash, in this case, since whatever is inside your Source Folder is accessed with the help of this, in simpler terms. Now when you will Run your project, the content of this Source Folder will be automatically added to the bin folder and when you will create a Runnable Jar, then the stuff inside your Source Folder can be accessed as it is.