JAVA操作properties文件

news/2024/7/3 14:33:32 标签: java

JAVA操作properties文件

java中的properties文件是一种配置文件。主要用于表达配置信息,文件类型为*.properties,格式为文本文件。文件的内容是格式是"键=值"的格式,在properties

文件里,能够用"#"来作凝视,properties文件在Java编程中用到的地方非常多。操作非常方便。
一、properties文件

test.properties
------------------------------------------------------
#################################
#   工商报表应用IcisReport的配置文件#
#   日期:2006年11月21日 #
#################################
#
#   说明:业务系统TopIcis和报表系统IcisReport是分离的
#   可分开部署到不同的server上,也能够部署到同一个服务
#   器上;IcisReprot作为独立的web应用程序能够使用不论什么
#   的Servlet容器或者J2EEserver部署并单独执行,也能够
#   通过业务系统的接口调用作为业务系统的一个库来应用.
#
#   IcisReport的ip
IcisReport.server.ip=192.168.3.143
#   IcisReport的端口
IcisReport.server.port=8080
#   IcisReport的上下文路径
IcisReport.contextPath=/IcisReport

------------------------------------------------------ 
Properties类的重要方法
Properties 类存在于胞 Java.util 中。该类继承自 Hashtable
1. getProperty ( String  key) ,   用指定的键在此属性列表中搜索属性。也就是通过參数 key ,得到 key 所相应的 value。
2. load ( InputStream  inStream) 。从输入流中读取属性列表(键和元素对)。通过对指定的文件(比方说上面的 test.properties 文件)进行装载来获取该文

件中的全部键 - 值对。以供 getProperty ( String  key) 来搜索。


3. setProperty ( String  key, String  value) ,调用 Hashtable 的方法 put 。他通过调用基类的put方法来设置 键 - 值对。

 
4. store ( OutputStream  out, String  comments) ,   以适合使用 load 方法载入到 Properties 表中的格式。将此 Properties 表中的属性列表(键和元素

对)写入输出流。与 load 方法相反,该方法将键 - 值对写入到指定的文件里去。
5. clear () ,清除全部装载的 键 - 值对。该方法在基类中提供。
-------------------------------

二、操作properties文件的java方法 

读属性文件
Properties prop = new Properties();
InputStream in = getClass().getResourceAsStream("/IcisReport.properties");
prop.load(in);
Set keyValue = prop.keySet();
for (Iterator it = keyValue.iterator(); it.hasNext();)
{
String key = (String) it.next();
}
------------------------
outputFile = new FileOutputStream(fileName);
propertie.store(outputFile, description);
outputFile.close();
-----------------------------------------------------------------------------------------
Class.getResourceAsStream ("/some/pkg/resource.properties");
ClassLoader.getResourceAsStream ("some/pkg/resource.properties");
java.util.ResourceBundle rs = java.util.ResourceBundle.getBundle("some.pkg.resource");
rs.getString("xiaofei");
-----------------------------------------------------------------------------------------
写属性文件
Configuration saveCf = new Configuration();
saveCf.setValue("min", "10");
saveCf.setValue("max", "1000");
saveCf.saveFile(".\config\save.perperties","test");

总结:javaproperties文件须要放到classpath以下。这样程序才干读取到。有关classpath实际上就是java类或者库的存放路径,在javaproject中。properties放到

class文件一块。在web应用中。最简单的方法是放到web应用的WEB- INF\classes文件夹下就可以。也能够放在其它文件夹以下。这时候须要在设置classpath环境变量的

时候,将这个目录路径加到 classpath变量中,这样也也能够读取到。在此。你须要对classpath有个深刻理解,classpath绝非系统中刻意设定的那个系统环境变

量,WEB-INF\classes事实上也是。javaproject的class文件文件夹也是。

发个样例大家自己看哈.
package control;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import java.util.Properties;

public class TestMain {
 
 //依据key读取value
 public static String readValue(String filePath,String key) {
  Properties props = new Properties();
        try {
         InputStream in = new BufferedInputStream (new FileInputStream(filePath));
         props.load(in);
         String value = props.getProperty (key);
            System.out.println(key+value);
            return value;
        } catch (Exception e) {
         e.printStackTrace();
         return null;
        }
 }
 
 //读取properties的所有信息
    public static void readProperties(String filePath) {
     Properties props = new Properties();
        try {
         InputStream in = new BufferedInputStream (new FileInputStream(filePath));
         props.load(in);
            Enumeration en = props.propertyNames();
             while (en.hasMoreElements()) {
              String key = (String) en.nextElement();
                    String Property = props.getProperty (key);
                    System.out.println(key+Property);
                }
        } catch (Exception e) {
         e.printStackTrace();
        }
    }

    //写入properties信息
    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");
        }
    }

    public static void main(String[] args) {
     readValue("info.properties","url");
        writeProperties("info.properties","age","21");
        readProperties("info.properties" );
        System.out.println("OK");
    }

 发个样例大家自己看哈.

package control;

import java.io.BufferedInputStream;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Enumeration;
import java.util.Properties;

public class TestMain {
 
 //依据key读取value
 public static String readValue(String filePath,String key) {
  Properties props = new Properties();
        try {
         InputStream in = new BufferedInputStream (new FileInputStream(filePath));
         props.load(in);
         String value = props.getProperty (key);
            System.out.println(key+value);
            return value;
        } catch (Exception e) {
         e.printStackTrace();
         return null;
        }
 }
 
 //读取properties的所有信息
    public static void readProperties(String filePath) {
     Properties props = new Properties();
        try {
         InputStream in = new BufferedInputStream (new FileInputStream(filePath));
         props.load(in);
            Enumeration en = props.propertyNames();
             while (en.hasMoreElements()) {
              String key = (String) en.nextElement();
                    String Property = props.getProperty (key);
                    System.out.println(key+Property);
                }
        } catch (Exception e) {
         e.printStackTrace();
        }
    }

    //写入properties信息
    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");
        }
    }

    public static void main(String[] args) {
     readValue("info.properties","url");
        writeProperties("info.properties","age","21");
        readProperties("info.properties" );
        System.out.println("OK");
    }
}


http://www.niftyadmin.cn/n/1207623.html

相关文章

Leetcode 算法面试冲刺 热题 HOT 100 刷题(75 76 78 79 84)(五十八)

文章目录75. 颜色分类76. 最小覆盖子串78. 子集79. 单词搜索84. 柱状图中最大的矩形75 78 7975. 颜色分类 就用了一个排序算法。 class Solution:def sortColors(self, nums: List[int]) -> None:"""Do not return anything, modify nums in-place instead.…

MyBatis学习总结(5)——实现关联表查询

一、一对一关联 1.1、提出需求 根据班级id查询班级信息(带老师的信息) 1.2、创建表和数据 创建一张教师表和班级表,这里我们假设一个老师只负责教一个班,那么老师和班级之间的关系就是一种一对一的关系。 1 CREATE TABLE teacher(2 t_id INT PRIMARY…

Leetcode 算法面试冲刺 热题 HOT 100 刷题(85 94 96 98 101)(五十九)

文章目录85. 最大矩形94. 二叉树的中序遍历96. 不同的二叉搜索树98. 验证二叉搜索树101. 对称二叉树85. 最大矩形 94. 二叉树的中序遍历 简单题 def inorderTraversal(self, root: Optional[TreeNode]) -> List[int]:if not root: return []res []def dfs(root, res):if n…

ifcfg、ip、ss,配置文件

ifcfg、ip、ss,配置文件一、ifcfg1、ifconfig命令:命令使用格式:ifonfig [INTERFACE]#ifconfig -a :显示所有接口,包括inactive状态的接口ifconfig interface [aftype] options | address..#ifconfig IFACE IP/MASK [up|down]例&a…

Leetcode 算法面试冲刺 热题 HOT 100 刷题(102 104 105 114 121)(六十)

文章目录102. 二叉树的层序遍历104. 二叉树的最大深度105. 从前序与中序遍历序列构造二叉树114. 二叉树展开为链表121. 买卖股票的最佳时机102. 二叉树的层序遍历 # Definition for a binary tree node. # class TreeNode: # def __init__(self, val0, leftNone, rightNone…

二维码显示要求

1:鼠标挪到二维码时能正常显示 2:显示的速度 3:抽象出一个方法转载于:https://www.cnblogs.com/lxq0924/p/5082619.html

Leetcode 算法面试冲刺 热题 HOT 100 刷题(124 128 136 139 141)(六十一)

文章目录124. 二叉树中的最大路径和128. 最长连续序列136. 只出现一次的数字139. 单词拆分141. 环形链表124. 二叉树中的最大路径和 困难题&#xff0c;我先跳过。 128. 最长连续序列 不会。 class Solution {public int longestConsecutive(int[] nums) {Set<Integer&…

自定义颜色清屏

openGL默认情况下清屏将RGB分量清零&#xff0c;所以屏幕变成黑色。采用如下的函数&#xff1a;glClear(GL_COLOR_BUFFER_BIT)。当然可以自定义清屏的颜色&#xff0c;采用如下的函数&#xff1a;glClearColor(1.0f, 0.0f, 0.0f, 0.0f)&#xff0c; 将屏幕渲染成红色void myDis…