I wonder if there is a way to extract a resource file packaged in an executable jar file and save it to a local drive, so when a user downloads my jar file and double clicks on it, it will first save one file from the resource to his C: drive, then run my program.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Just use ClassLoader.getResourceAsStream() to get an |
|||
|
|
|
You would need to write that logic into your program. Executing a Here is the Sun tutorial on copying a file in Java. |
|||
|