我有一個項目組織這樣的:如何閱讀file.properties
-LIBRERIA CLIENT/
-SRC/
-CONNECTION/
CONNECTIONdB.JAVA
CONFIG.PROPERTIES
在CONNECETIONDB
我有這樣的代碼讀取CONFIG.PROPERTIES
文件:
public static void connect() throws RemoteException
{
//read file config.properties:
String dbHost="",dbUser="",dbPassword="";
Properties prop=new Properties();
try
{
//load il file:
prop.load(new FileInputStream("src/Connectionconfig.properties"));
//read the property of file
dbHost=prop.getProperty("host");
dbUser=prop.getProperty("user");
dbPassword=prop.getProperty("password");
}catch(FileNotFoundException fe){
System.out.println("File not found");
}catch(IOException ex){
System.out.println("Error reading configuration file");
}
但我有此錯誤:
FILE NOT FOUND
有人能告訴我我哪裏出錯了嗎?
用不着喊。所有大寫字母都被認爲是蠻幹的,並且不禮貌。 – Oded
大量使用大寫鎖定不會幫助您... – Baz
您認爲「找不到文件」的含義是什麼? – Jesper