Referenced Library from an Eclipse plugin needs a .properties file

I have a problem with reading .properties files from my Eclipse plugin.

My plugin uses a Referenced Library .jar file. In the file a class is calling:

new FileInputStream("xxx.properties")

and it can't find the .properties file. I have this file. Where should I put it, or include it's path so that my library can find it when running the plugin?

[373 byte] By [Geereea] at [2007-11-27 8:24:41]
# 1
Place it in the working directory.
kajbja at 2007-7-12 20:13:49 > top of Java-index,Java Essentials,Java Programming...
# 2
> Place it in the working directory.And what would be the working directory for a plugin?
Geereea at 2007-7-12 20:13:49 > top of Java-index,Java Essentials,Java Programming...
# 3
> > Place it in the working directory.> > And what would be the working directory for a plugin?Probably the same as for Eclipse since it's loaded by that process.
kajbja at 2007-7-12 20:13:49 > top of Java-index,Java Essentials,Java Programming...
# 4
You can place the properties file in a folder and add that folder into the classpath starting eclipse.
boneysekha at 2007-7-12 20:13:49 > top of Java-index,Java Essentials,Java Programming...