博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单测试java - properties
阅读量:6607 次
发布时间:2019-06-24

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

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.InputStream;
import java.util.Enumeration;
import java.util.Properties;
public class TestPorperty {
    /**
     * 写入-properties文件:
     *         conf 传递过来的content里边的字符串
     *         xmlPath是指定的路径
     * */
    public void writeProperty(String conf,String xmlPath) throws Exception{
        Properties prop = new Properties();
        /**
         * 通过"<,>"符号截
         *         prop.setProperty(key,value)
         *         prop.store()写入到传递过来的xmlPath
         * */
        String values[] = conf.split("<,>");
        for (String value : values) {
            int index = value.indexOf("=");
            prop.setProperty(value.substring(0, index),
                    value.substring(index + 1));
            prop.store(new FileOutputStream(xmlPath),
                    xmlPath);
        }
    }
    
    /**
     * 读取:
     *     格式化-properties文件内容为字符串格式
     *         xmlPath是-properties文件路径
     * */
    public void fotmatXml(String xmlPath){
        Properties prop = new Properties();
        StringBuffer content = new StringBuffer();
        String cont = "";
        try {
            InputStream in = new BufferedInputStream(new FileInputStream(
                    xmlPath));
            prop.load(in);
            //返回属性列表中所有键的枚举,如果在主属性列表中未找到同名的键,则包括默认属性列表中不同的键
            Enumeration<?> en = prop.propertyNames();
            while (en.hasMoreElements()) {
                //如果此枚举对象至少还有一个可提供的元素,则返回此枚举的下一个元素
                String key = (String) en.nextElement();
                //用指定的键在此属性列表中搜索属性
                String property = prop.getProperty(key);
                cont = key + "=" + property +"<,>";
                content.append(cont);
            }
            String con = content.substring(0, content.length()-3);
            System.out.println(con);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
    
    /**
     * 1、把字符串写入到-properties文件
     * 2、格式化文件-properties为字符串
     * */
    public static void main(String args[]) throws Exception {  
        Properties prop = new Properties();
        String conf = "";
        String values[] = conf.split("<,>");
        for (String value : values) {
            int index = value.indexOf("=");
            prop.setProperty(value.substring(0, index),
                    value.substring(index + 1));
            prop.store(new FileOutputStream("devoment.properties"),
                    "devoment.properties");
        }
        StringBuffer content = new StringBuffer();
        String cont = "";
        try {
            InputStream in = new BufferedInputStream(new FileInputStream(
                    "devoment.properties"));
            prop.load(in);
            Enumeration<?> en = prop.propertyNames();
            while (en.hasMoreElements()) {
                String key = (String) en.nextElement();
                String property = prop.getProperty(key);
                cont = key + "=" + property +"<,>";
                content.append(cont);
            }
            String con = content.substring(0, content.length()-3);
            System.out.println(con);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }  
}

转载于:https://www.cnblogs.com/love-you-girl/p/3699981.html

你可能感兴趣的文章
easyui datagrid plunges 扩展 插件
查看>>
在绿色的河流上
查看>>
关于内存溢出产生的死循环
查看>>
基于ITIL的医院信息化服务管理实践(客户说)
查看>>
ovirt官方安装文档 附录G
查看>>
磁盘故障小案例
查看>>
了解相关.NET Framework不同组件区别及安装知识
查看>>
ToughRADIUS快速指南
查看>>
Kubernetes+Prometheus+Grafana部署笔记
查看>>
linux磁盘管理基本命令
查看>>
HTML
查看>>
【转】左手坐标系和右手坐标系
查看>>
我的友情链接
查看>>
我的友情链接
查看>>
POJ 3335 Rotating Scoreboard 半平面交
查看>>
oracle 闪回查询
查看>>
window.location.href和window.location.replace的区别
查看>>
《Gamestorming》读书笔记
查看>>
域名和网址链接被微信浏览器拦截怎么办 微信屏蔽网址打开如何解决
查看>>
SpringBoot 统一响应格式
查看>>