博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java_Properties写入文件
阅读量:5846 次
发布时间:2019-06-18

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

package ming;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.util.Properties;public class PropertiesTest {	/**	 * @param args	 * @throws IOException 	 * @throws FileNotFoundException 	 */	public static void main(String[] args) throws FileNotFoundException, IOException {		// TODO Auto-generated method stub		Properties props = new Properties();		//向Properties添加属性		props.setProperty("username", "abc");		props.setProperty("password", "123");		//保存到a.ini文件中		props.store(new FileOutputStream("a.ini"), "comment line");		//追加数据		Properties props2 = new Properties();		props2.setProperty("gender", "male");		props2.load(new FileInputStream("a.ini"));		System.out.println(props2);			}}

转载于:https://www.cnblogs.com/MarchThree/p/3720464.html

你可能感兴趣的文章
YII分页显示数据
查看>>
Android下获取状态栏的高度
查看>>
通用ShellCode学习笔记 2003/XP/Win7/Vista/Win8 通用
查看>>
华为 恢复配置文件不存在
查看>>
shell---if语句
查看>>
Start Developing iOS Apps Today系列(六)
查看>>
LVS学习笔记之DR模式详细部署
查看>>
Exchange 2010的部署
查看>>
Shell之grep命令
查看>>
Python字符串格式化 (%操作符)
查看>>
我的友情链接
查看>>
docker 适用dockerfile 定制docker镜像
查看>>
使程序在用户长时间不操作时退出
查看>>
Linux入门
查看>>
基于css3的鼠标滑动按钮动画
查看>>
mysql处理json数据
查看>>
发现企业安全漏洞
查看>>
单例模式的五种写法
查看>>
exch 2010 传输规则
查看>>
受不了51cto的编辑
查看>>