大家好,我有一个很大的问题,因为我工作了2个小时,我找不到它的答案......
我试图打开一个" infos.properties"包含连接SQL数据库但是应用程序的数据的文件(是因为我在Android应用程序上开发)无法找到infos.properties.And得到以下错误
java.io.FileNotFoundException: /infos.properties: open failed : ONOENT (No such file or directory)
这是我的代码:
final class DB
{
static final String DRIVER;
static final String URL;
static final String USER;
static final String PASSWORD;
static
{
Properties prop = new Properties();
try
{
prop.load(new FileInputStream("infos.properties"));
}
catch (IOException e)
{
e.printStackTrace();
}
DRIVER = prop.getProperty("DRIVER");
URL = prop.getProperty("URL");
USER = prop.getProperty("user");
PASSWORD = prop.getProperty("password");
}
}
我正在通过USB插件自行测试应用程序。