view(视图) / other windows(其他窗口) / property manager(属性管理器)
通过 add new project property sheet ... 菜单,就能发现每一项其实含山都是一个*.props文件,文件中记录了用户定义的所有marcos
点击 Properties 就能查看 User Marcos
知道了Marcos的本质,同理我们想要在其他项目中使用同一个宏,只需要引入props文件即可,就不用自己再新建一遍了。
在斗嫌添加vc目录的时候,最后都会使用 AdditionalIncludeDiretories ,
排查2个方向
但是你会发现cocos2d_headers.props的 Additional Dependencies 并没有变粗:
VS2010添念悉腊加.props类型文件方法首先选择项目属性管理器,然后陆塌选仔滑中项目右击选择添加现有属性表,最后在对话框里选择你要添加的.props文件即可。
* Spring 提供的 PropertiesLoaderUtils 允许您直接通过基于类路径的文件地址加载属性资源
* 最大的好处就是:实时加载配置文件,修改后立即生效,不必重启
*/
private static void springUtil(){
Properties props = new Properties()
while(true){
try {
props=PropertiesLoaderUtils.loadAllProperties("message.properties")
薯纳逗 for(Object key:props.keySet()){
System.out.print(key+":")
System.out.println(props.get(key))
}
数卖 } catch (IOException e) {
System.out.println(e.getMessage())
}
茄汪 try {
Thread.sleep(5000)
} catch (InterruptedException e) {
e.printStackTrace()
}
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)