关于java中的properties的问题
答案:2 悬赏:0 手机版
解决时间 2021-02-19 22:21
- 提问者网友:嘚啵嘚啵
- 2021-02-19 16:40
关于java中的properties的问题
最佳答案
- 五星知识达人网友:十年萤火照君眠
- 2021-02-19 16:49
代码问题:
// 类加载器默认就到src目录下面去找配置文件,同样适用javaee工程,你的问题是路径问题,看我下面的示例:
ClassLoader cl = DaoFactory.class.getClassLoader();
// dao.properties配置在src下面的cn/itcast/xml/model下面。
InputStream is = cl.getResourceAsStream("cn/itcast/xml/model/dao.properties");
// dao.properties直接配置在src下面。
// InputStream is = cl.getResourceAsStream("dao.properties");
请采纳。
// 类加载器默认就到src目录下面去找配置文件,同样适用javaee工程,你的问题是路径问题,看我下面的示例:
ClassLoader cl = DaoFactory.class.getClassLoader();
// dao.properties配置在src下面的cn/itcast/xml/model下面。
InputStream is = cl.getResourceAsStream("cn/itcast/xml/model/dao.properties");
// dao.properties直接配置在src下面。
// InputStream is = cl.getResourceAsStream("dao.properties");
请采纳。
全部回答
- 1楼网友:雪起风沙痕
- 2021-02-19 17:00
Properties p = new Properties();
OutputStream out;
try {
out = new FileOutputStream("c:\\proper.properties");
p.store(out, "aaaaaaaaaa");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
OutputStream out;
try {
out = new FileOutputStream("c:\\proper.properties");
p.store(out, "aaaaaaaaaa");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯