jsp里可以读取.properties配置文件吗?可以的话怎么读取?求详解。
1个回答
展开全部
可以.java提供了java.uitl.Properities这个类去调用这类文件的。
Properties p = new Properties();
p.load(ZCloudServiceImpl.class.getResourceAsStream("/config/config.properties"));
OutputStream fos = new FileOutputStream(A.class.getResource("/config/config.properties").getPath());
p.setProperty("zCloud.primaryNode", value);
p.store(fos, "");
Properties p = new Properties();
p.load(ZCloudServiceImpl.class.getResourceAsStream("/config/config.properties"));
OutputStream fos = new FileOutputStream(A.class.getResource("/config/config.properties").getPath());
p.setProperty("zCloud.primaryNode", value);
p.store(fos, "");
更多追问追答
追问
是jsp文件里,不是java里
追答
一样的。其它jsp也是一个特殊的servlet。那jsp也当然可以引用java相关的
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询