码迷,mamicode.com
首页 > 其他好文 > 详细

保存到properties

时间:2017-04-17 00:26:15      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:sep   alert   void   .sh   stack   保存   XML   show   this   

@FXML
private void savaconfig(ActionEvent event) {
try {
Properties prop = new Properties();
FileWriter fw = new FileWriter("conf" + File.separator + "config.properties");
BufferedWriter br = new BufferedWriter(fw);

String sqlmapPath = this.id_textFeild.getText();

prop.setProperty("SqlmapPath", sqlmapPath);

prop.store(br, "配置文件");

br.close();
new Alert(Alert.AlertType.NONE, "已保存到配置文件config.properties", new ButtonType[] { ButtonType.CLOSE }).show();
}
catch (Exception e) {
new Alert(Alert.AlertType.NONE, "未找到配置文件config.properties", new ButtonType[] { ButtonType.CLOSE }).show();
e.printStackTrace();
}
}

保存到properties

标签:sep   alert   void   .sh   stack   保存   XML   show   this   

原文地址:http://www.cnblogs.com/SEC-fsq/p/6720437.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!