博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java属性文件读取,属性修改
阅读量:5879 次
发布时间:2019-06-19

本文共 1292 字,大约阅读时间需要 4 分钟。

/** * 属性文件读取 * @author bestmata * */public class CommUtil {    private static Logger logger=Logger.getLogger(CommUtil.class);            private  Properties getAttionReplyPro(){        try {            InputStream in=CommUtil.class.getResourceAsStream("attionReply.properties");            Properties p=new Properties();            p.load(in);            in.close();            return p;        } catch (Exception e) {            logger.error(e);        }        return null;            }        //获取关注的标示    public  String getAttionFlag(){        Properties p=getAttionReplyPro();        String attionFlag=p.getProperty("attionFlag");        return attionFlag;    }        //设置attionFlag的值    public  void setAttionFlag(String flag){        try {            Properties p=getAttionReplyPro();            p.setProperty("attionFlag", flag);            OutputStream out=new FileOutputStream(new File(CommUtil.class.getResource("attionReply.properties").toURI()));            p.store(out, "");            out.flush();            out.close();        } catch (Exception e) {            logger.error(e);        }            }        public static void main(String[] args) {        CommUtil a=new CommUtil();        a.setAttionFlag("fag4");        System.out.println(a.getAttionFlag());            }}

 

转载地址:http://kbdix.baihongyu.com/

你可能感兴趣的文章
刷前端面经笔记(十一)
查看>>
几款常见的视频格式转换器
查看>>
使用Data URI Scheme优雅的实现前端导出csv
查看>>
第十七天-企业应用架构模式-会话状态模式
查看>>
Bytom BIP-32协议和BIP-44协议
查看>>
Docker入门(二)在docker使用MongoDB
查看>>
如何抓住下一波零售风口?看RPA玩转零售自动化
查看>>
记一次mpvue开发完整小程序相关笔记
查看>>
三个月可更改用户昵称两次
查看>>
【极简壁纸】简单高效美观的壁纸网站
查看>>
前嗅ForeSpider教程:采集需要登陆的网页内容
查看>>
从现在开始,试着学会用官方文档去学习一个技术框架
查看>>
一篇文章玩转全网音乐信息库MusicBrainz API
查看>>
多功能React影像组件(拖拽、水印、缩放、切换、旋转)
查看>>
springboot+mybatis实现登录功能,返回json
查看>>
python基础总结
查看>>
通过一个例子学习Kubernetes里的PersistentVolumeClaim的用法
查看>>
常见的几种排序方法
查看>>
EOSIO 指南(部署、发行和转移代币)
查看>>
微信小程序初体验,入门练手项目--通讯录,部署上线(二)
查看>>