| Author |
Reading properties file problem
|
Angus Rose
Ranch Hand
Joined: Jun 21, 2002
Posts: 56
|
|
Dear All, I'm up against one of those irritating classpath problems. Let me explain the scenario: I have an application deployed as a jar file. This application reads a properties file when it fires up. This properties file needs to be placed in a different directory when deployed so that the administrator can edit the properties contained within it. I have tried several ways of reading this file including InputStream l_isAttillaPropertiesInputStream = this.getClass().getClassLoader().getResourceAsStream("AttillaQ.properties"); Currently, the properties file sits in the same directory as the jar file containing the application and the directory is on the classpath. Alas, the InputStream object is still null, i.e. the classloader cannot find the properties file. Please help me!!! Angus
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12929
|
|
Please do not post the same question in multiple forums. See the JavaRanch FAQ: Carefully choose one forum.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Reading properties file problem
|
|
|