解决java properties文件里面如何写"\"的问题-亚博电竞手机版
目录
- 问题
- 解决
问题
我的是ssh项目,需要做一个文件上传,然后文件路径需要读取properties配置
在resource下有config/application.properties
然后工具类是这样写的,这个是可以用的
import java.io.ioexception; import java.io.inputstream; import java.util.enumeration; import java.util.missingresourceexception; import java.util.properties; import java.util.resourcebundle; public class propertiesutil { private static properties props = new properties(); private static propertiesutil instances = null; private static string name = "config//application"; public static propertiesutil getinstance() { if (null == instances) { instances = new propertiesutil(); } return instances; } private propertiesutil() { init(name); public synchronized void init(string spropfilepathname) throws missingresourceexception { string propfile = spropfilepathname; resourcebundle bundle = resourcebundle.getbundle(propfile); enumeration enume = bundle.getkeys(); object key = null; object value = null; while (enume.hasmoreelements()) { key = enume.nextelement(); value = bundle.getstring(key.tostring()); props.put(key, value); public string getproperty(string key) { return props.getproperty(key); public static string getvalue(string filepath, string key) { inputstream in = null; string value = null; try { in = propertiesutil.class.getresourceasstream(filepath); props.load(in); value = props.getproperty(key); } catch (exception e) e.printstacktrace(); }finally{ try { if(in != null) { in.close(); } } catch (ioexception e) e.printstacktrace(); return value; } public static void main(string[] args) { system.out.println(propertiesutil.getinstance().getproperty("属性key")); }
如果我在properties写成如下
项目直接启动不起来,报了error
解决
经过研究,properties使用“\”相http://www.cppcns.com当于是java的转义符
如果想要写出\的效果,只需修改如下写法即可
然后项目起来了,然后看数据库插入的path也正常~
到此这篇关于javaproperties文件里面如何写“\“的文章就介绍到这了,更多相关javaproperties文件内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!