-2

我有一个项目组织了这个:

-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 

有人能告诉我我哪里出错了吗?

4

2 回答 2

1

这很简单:您的代码在 project_root 的不同文件夹中执行。此外:src/Connectionconfig.properties不存在:应该是SRC/CONNECTION/CONFIG.PROPERTIES,如果您从 project_root 执行项目。
还要查看这个以获取当前工作目录:Getting the Current Working Directory in Java

于 2012-09-18T11:08:38.517 回答
0

您的代码读取Connectionconfig.properties文件下src但根据您的项目结构仅存CONFIG.PROPERTIES在于SRC/CONNECTION. 改成

  prop.load(new FileInputStream("SRC/CONNECTION/CONFIG.PROPERTIES"));

代替

  prop.load(new FileInputStream("src/Connectionconfig.properties"));
于 2012-09-18T11:30:28.457 回答