代码语言
.
CSharp
.
JS
Java
Asp.Net
C
MSSQL
PHP
Css
PLSQL
Python
Shell
EBS
ASP
Perl
ObjC
VB.Net
VBS
MYSQL
GO
Delphi
AS
DB2
Domino
Rails
ActionScript
Scala
代码分类
文件
系统
字符串
数据库
网络相关
图形/GUI
多媒体
算法
游戏
Jquery
Extjs
Android
HTML5
菜单
网页交互
WinForm
控件
企业应用
安全与加密
脚本/批处理
开放平台
其它
【
Java
】
Properties资源文件工具类
作者:
黎昕
/ 发布于
2016/12/21
/
668
package com.ctl.util; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.util.HashMap; import java.util.Map; import java.util.Properties; /** * @deprecated 该类可以用来创建properties资源文件 * @author Administrator * @see www.ctl.com.cn * @category SDGHDHSDFG * @serial dfgds */ public class PropertiesUtil { /** * * @param propertityPath * 资源文件要存放的路径例如H:/mysql.properties * @param map * 将要写入的资源放入该map中 HashMap<String, String> * @param comment * 对在资源文件的描述 */ public static void createPropertityFile(String propertityPath, String comment, Map<String, String> map) { File file = new File(propertityPath); new File(file.getParent()).mkdirs(); Properties pro = new Properties(); for (Map.Entry<String, String> entry : map.entrySet()) { pro.setProperty(entry.getKey(), entry.getValue()); } try { pro.store(new FileOutputStream(propertityPath), comment); } catch (Exception e) { System.err.println("存储properties出错"); } } /** * @param map * 将要写入的资源放入该map中 HashMap<String, String> * @param comment * 对在资源文件的描述 * @param propertityPath * 资源文件要存放的路径例如H:/mysql.xml */ public static void createPropertityXMLFile(String propertityPath, String comment, Map<String, String> map) { File file = new File(propertityPath); new File(file.getParent()).mkdirs(); Properties pro = new Properties(); for (Map.Entry<String, String> entry : map.entrySet()) { pro.setProperty(entry.getKey(), entry.getValue()); } try { pro.storeToXML(new FileOutputStream(propertityPath), comment,"utf-8"); } catch (Exception e) { System.err.println("存储properties出错"); } } /** * * @param filePath "H:/mysql.properties" * @return Properties的实例对象 */ public static Properties loadProperties(String filePath){ Properties pro=new Properties(); try { pro.load(new FileInputStream(new File(filePath))); } catch (FileNotFoundException e) { System.err.println("文件未找到"); e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return pro; }/** * * @param filePath "H:/mysql.xml" * @return Properties的实例对象 */ public static Properties loadXMLProperties(String filePath){ Properties pro=new Properties(); try { pro.loadFromXML(new FileInputStream(new File(filePath))); } catch (FileNotFoundException e) { System.err.println("文件未找到"); e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } return pro; } /** * @param args */ public static void main(String[] args) { Map<String, String> map = new HashMap<String, String>(); map.put("a", "value1"); map.put("b", "value2"); map.put("c", "value3"); String path="H:" + File.separator + "a//a/"+File.separator; createPropertityFile(path+"mysql.properties", "mysql数据库资源配置", map); createPropertityXMLFile(path+"mysql.xml", "mysql数据库资源配置", map); Properties pro=loadProperties(path+"mysql.properties"); System.out.println(pro); pro=loadXMLProperties(path+"mysql.xml"); System.out.println(pro); } }
试试其它关键字
同语言下
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
可能有用的
.
List 切割成几份 工具类
.
一行一行读取txt的内容
.
Java PDF转换成图片并输出给前台展示
.
java 多线程框架
.
double类型如果小数点后为零则显示整数否则保留两位小
.
将图片转换为Base64字符串公共类抽取
.
sqlParser 处理SQL(增删改查) 替换schema 用于多租户
.
JAVA 月份中的第几周处理 1-7属于第一周 依次类推 29-
.
java计算两个经纬度之间的距离
.
输入时间参数计算年龄
黎昕
贡献的其它代码
(
12
)
.
操作 SparkSQL (spark版本2.3) JOIN使用临时表版本
.
从HIVE中到出道mysql中
.
请求 Zip 压缩的 HTTP 页面
.
Properties资源文件工具类
.
在UpdatePanel中弹出对话框
.
.pre标签封装代码
.
根据身份证号或营业执照编号取省市区信息
.
原生H5页面模拟APP侧滑删除效果
.
shadow实现的各种漂亮阴影效果
.
使用触发器操作表1(添加,更新,删除) 同步实现表2的
Copyright © 2004 - 2024 dezai.cn. All Rights Reserved
站长博客
粤ICP备13059550号-3