java 中,在程序中,怎么把一个key=value的东西写到source.properties中。

 我来答
78533664
2011-05-31
知道答主
回答量:40
采纳率:0%
帮助的人:32.2万
展开全部
public static void writeProperties(String filePath,String parameterName,String parameterValue) {
Properties prop = new Properties();
try {
InputStream fis = new FileInputStream(filePath);
//从输入流中读取属性列表(键和元素对)
prop.load(fis);
//调用 Hashtable 的方法 put。使用 getProperty 方法提供并行性。
//强制要求为属性的键和值使用字符串。返回值是 Hashtable 调用 put 的结果。
OutputStream fos = new FileOutputStream(filePath);
prop.setProperty(parameterName, parameterValue);
//以适合使用 load 方法加载到 Properties 表中的格式,
//将此 Properties 表中的属性列表(键和元素对)写入输出流
prop.store(fos, "Update '" + parameterName + "' value");
} catch (IOException e) {
System.err.println("Visit "+filePath+" for updating "+parameterName+" value error");
}
}

调用writeProperties("source.properties","key","value")
扣寇344435784
2011-05-31 · 超过11用户采纳过TA的回答
知道答主
回答量:80
采纳率:0%
帮助的人:87.5万
展开全部
import java.io.FileOutputStream;
import java.util.Properties;

public class PropertiesDemo {
public static void main(String[] args) throws Exception {
Properties p = new Properties();
p.put("key", "value");
p.store(new FileOutputStream("source.properties",true),"");
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式