Forums Register Login

adding a property file to a jar

+Pie Number of slices to send: Send
hi,

i want to deliver a jar to a client in which some of the classes read some values from property files.My question is

1)Is it a good idea to put property files in a jar?
2)if so how can i put a property file inside a jar?
3)If its not how can i distribute it as it may go to different persons and they may have different structures?It will be difficult for me to assume that it will be placed in a particular directory.

Any inputs are highly apreciated.
1
+Pie Number of slices to send: Send
Welcome to JavaRanch.

1. It can be a good idea to put your properties file in the JAR. A disadvantage of putting it inside the JAR is that it will be harder to edit (you'd have to extract it from the JAR and put it back in).

2. When you build the JAR file, just include it together with your class files. You can use the method getResourceAsStream() in class Class or ClassLoader to read your properties file inside the JAR file. Suppose, for example, that you have your properties file in the root of the JAR file, then you could read it inside your program like this:

[ September 03, 2008: Message edited by: Jesper Young ]
+Pie Number of slices to send: Send
Hi Jesper ,

the solution you gave works when i want to read the property file from a class out side the jar.But my problem is there are some classes inside the jar which access my property files.when I add the properties file to jar and use it in another application it is throwing resource not found exception.

Is there a way to resolve it ? Does it make sense ?
+Pie Number of slices to send: Send
 

use it in another application it is throwing resource not found exception.


How does the other application access the jar file with the properties file?
Is it on the JVM's classpath? What method does the app use?
+Pie Number of slices to send: Send
the jar is placed in the classpath and there are three methods which access the property file inside the jar.I am using fileinputstream class to read the properties file.
+Pie Number of slices to send: Send
 

Originally posted by pavan babu:
I am using fileinputstream class to read the properties file.



Please read what Jesper wrote...
+Pie Number of slices to send: Send
Thank you Jesper! I realize this is an almost 4 year old post- but it helped me resolve my issue. Id been trying to read a properties file from a jar using the following:

FileInputStream fin = new FileInputStream(path);
props = new Properties();
props.load(fin);

Id also been using FileInputStream(like Pavan) and it wasnt working for some reason (Ive still got to figure out why). Once I replaced the code with the following, it worked!

InputStream fin=null;
fin=ClassLoader.getSystemResourceAsStream(path); //this is a static function
props = new Properties();
props.load(fin);

A small note regarding the "path" variable mentioned above. "path" is the path to my properties file relative to where my main class is. So, if my main is com.test and the properties file is x.properties, I placed x.properties outside com when creating the jar and path was simply x.properties.
If you were a tree, what sort of tree would you be? This tiny ad is a poop beast.
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 22255 times.
Similar Threads
how to deal with the property file that could be modified by user
Jar a project with property files in it external to jar
Property Files inside Jar File
Refering a jar file from another jar
Location of properties jar in an EAR
More...

All times above are in ranch (not your local) time.
The current ranch time is
Apr 16, 2024 04:48:00.