I need a file filename.txt which is inside a jar file. How can I read the contents of the txt file using code? Are there any libraries available for working with *.jar files?
|
The jar needs to be on the classpath of the application. This code will search for the file test.txt in the root of all jars. If you need to specify a jar that isn't on the classpath, then the other suggestions might be more worthwhile. |
|||
|
|
If the jar is in the classpath, you can access a file in it using |
|||
|
|
Yes, there's See also this article on the Oracle website, which provides examples and such. Here's the code from their first example, unzipping all the files from an archive (not my code, and of course like most examples it has inadequate error checking, etc.):
|
||||
|
|
|
You dont need a separate library. The default zip packages do just fine.
|
|||
|
|
|
Open it with any zip utility softwares. .jar is simply a .zip file. |
|||
|
First check where in
Sample output
Now that you know the path to xxx.txt, Extract it by
|
|||
|
|
