.ini 配置文件读写

import java.io.*;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class IniConfiguration {

    private static BufferedReader bufferedReader;
    private static String filePath=System.getProperty("user.dir")+"\\resource\\config.ini";

    /**
     * 初始化配置文件
     * @param filePath  配置文件路径
     */
    public IniConfiguration(String filePath){
        this.filePath=filePath;
        try {
            bufferedReader = new BufferedReader(new FileReader(filePath));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }

    public IniConfiguration(){
        try {
            bufferedReader = new BufferedReader(new FileReader(filePath));
        } catch (FileNotFoundException e) {
            e.printStackTrace();
        }
    }
    /**
     * 从ini配置文件中读取变量的值(无段名)
     *
     * @param variable     要获取的变量名称
     * @param defaultValue 变量名称不存在时的默认值
     */
    public static String readCfgValue(String variable, String defaultValue){
        String strLine, value = "";
        try {
            while ((strLine = bufferedReader.readLine()) != null) {
                strLine = strLine.trim();

                String[] strArray = strLine.split("=");
                if (strArray.length == 1) {
                    value = strArray[0].trim();
                    if (value.equalsIgnoreCase(variable)) {
                        value = "";
                        return value;
                    }
                } else if (strArray.length == 2) {
                    value = strArray[0].trim();
                    if (value.equalsIgnoreCase(variable)) {
                        value = strArray[1].trim();
                        return value;
                    }
                } else if (strArray.length > 2) {
                    value = strArray[0].trim();
                    if (value.equalsIgnoreCase(variable)) {
                        value = strLine.substring(strLine.indexOf("=") + 1).trim();
                        return value;
                    }
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        }
        return defaultValue;
    }

    /**
     * 从ini配置文件中读取变量的值(有段名)
     *
     * @param section      要获取的变量所在段名称
     * @param variable     要获取的变量名称
     * @param defaultValue 变量名称不存在时的默认值
     */
    public static String readCfgValue( String section, String variable, String defaultValue){
        String strLine, value = "";
        boolean isInSection = false;
        try {
            while ((strLine = bufferedReader.readLine()) != null) {
                //System.out.println(strLine);
                strLine = strLine.trim();
                if("".equals(section)){
                    continue;
                }
                strLine = strLine.split("[;]")[0];
                Pattern p;
                Matcher m;
                p = Pattern.compile("\\[[a-zA-Z0-9\\u4E00-\\u9FA5]*]");
                m = p.matcher((strLine));
                //System.out.println(m.matches());
                if (m.matches()) {
                    p = Pattern.compile("\\[" + section + "\\]");
                    m = p.matcher(strLine);
                    if (m.matches()) {
                        isInSection = true;
                    } else {
                        isInSection = false;
                    }
                }
                if (isInSection == true) {
                    String[] strArray = strLine.split("=");
                    if (strArray.length == 1) {
                        value = strArray[0].trim();
                        if (value.equalsIgnoreCase(variable)) {
                            value = "";
                            return value;
                        }
                    } else if (strArray.length == 2) {
                        value = strArray[0].trim();
                        if (value.equalsIgnoreCase(variable)) {
                            value = strArray[1].trim();
                            return value;
                        }
                    } else if (strArray.length > 2) {
                        value = strArray[0].trim();
                        if (value.equalsIgnoreCase(variable)) {
                            value = strLine.substring(strLine.indexOf("=") + 1).trim();
                            return value;
                        }
                    }
                }
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                bufferedReader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return defaultValue;
    }

    /**
     * 修改ini配置文件中变量的值(无段名)
     *
     * @param variable 要修改的变量名称
     * @param value    变量的新值
     */
    public static boolean writeCfgValue(String variable, String value){
        String fileContent="";
        String allLine,  newLine = "";
        String strLine="";
        String getValue = null;
        boolean canAdd = true;

        try {
            while ((allLine = bufferedReader.readLine()) != null) {
                strLine = allLine.trim();
                String[] strArray = strLine.split("=");
                getValue = strArray[0].trim();
                //System.out.println(getValue+";"+variable);
                if (getValue.equalsIgnoreCase(variable)) {
                    newLine = getValue + "=" + value;
                    fileContent += newLine;
                    while ((allLine = bufferedReader.readLine()) != null) {
                        fileContent += "\r\n" + allLine;
                    }
                    bufferedReader.close();
                    canAdd = false;

                    BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filePath, false));
                    bufferedWriter.write(fileContent);
                    bufferedWriter.flush();
                    bufferedWriter.close();
                    return true;
                }
                fileContent += allLine + "\r\n";
            }
            if (canAdd) {
                String str = variable + "=" + value;
                fileContent += str + "\r\n";
                //System.out.println(fileContent);
                BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filePath, false));
                bufferedWriter.write(fileContent);
                bufferedWriter.flush();
                bufferedWriter.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        }finally {
            try {
                bufferedReader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return false;
    }

    /**
     * 修改ini配置文件中变量的值(有段名)
     *
     * @param section  要修改的变量所在段名称
     * @param variable 要修改的变量名称
     * @param value    变量的新值
     */
    public static boolean writeCfgValue( String section, String variable, String value){
        String fileContent="";
        String allLine, strLine, newLine = "";
        String getValue = null;
        boolean isInSection = false;
        boolean canAdd = true;
        try {
            while ((allLine = bufferedReader.readLine()) != null) {
                allLine = allLine.trim();
                strLine = allLine.split(";")[0];
                Pattern p;
                Matcher m;
                p = Pattern.compile("\\[[a-zA-Z0-9\\u4E00-\\u9FA5]*]");
                m = p.matcher((strLine));
                if (m.matches()) {
                    p = Pattern.compile("\\[" + section + "\\]");
                    m = p.matcher(strLine);

                    if (m.matches()) {
                        isInSection = true;
                    } else {
                        isInSection = false;
                    }
                }
                if (isInSection == true) {
                    strLine = strLine.trim();
                    String[] strArray = strLine.split("=");
                    getValue = strArray[0].trim();
                    if (getValue.equalsIgnoreCase(variable)) {
                        newLine = getValue + "=" + value;
                        fileContent += newLine;
                        while ((allLine = bufferedReader.readLine()) != null) {
                            fileContent += "\r\n" + allLine;
                        }
                        bufferedReader.close();
                        canAdd = false;

                        BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filePath, false));
                        bufferedWriter.write(fileContent);
                        bufferedWriter.flush();
                        bufferedWriter.close();

                        return true;
                    }

                }
                fileContent += allLine + "\r\n";
            }
            if (canAdd) {
                String str = variable + "=" + value;
                fileContent += str + "\r\n";
                //System.out.println(fileContent);
                BufferedWriter bufferedWriter = new BufferedWriter(new FileWriter(filePath, false));
                bufferedWriter.write(fileContent);
                bufferedWriter.flush();
                bufferedWriter.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                bufferedReader.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return false;

    }

    public static void main(String[] args) {
        IniConfiguration i=new IniConfiguration();
        //System.out.println(i.readCfgValue("","",""));
        //i.writeCfgValue("","","");
        //System.out.println(i.readCfgValue("",""));
        i.writeCfgValue("","");
    }
}

 

纯c读写ini配置文件 用c/c++读写ini配置文件有不少第三方的开源库,如iniparser、libini、rwini、UltraLightINIParser等,但都不理想,往往代码较大、功能较弱、 接口使用不方便。尤其在大小写处理、前后空格、各种注释、跨平台换行符支持、带引号字符串处理、无section操作、原格式保持等方面存在问题。 现将本人精心制作的ini读写程序源码奉献给大家,纯c编写,简洁好用。支持windows和linux。 主要特点: 1、支持;和#注释符号,支持行尾注释。 2、支持带引号'或"成对匹配的字符串,提取时自动去引号。引号中可带其它引号或;#注释符。 3、支持无section或空section(名称为空)。 4、支持10、16、8进制数,0x开头为16进制数,0开头为8进制。 5、支持section、key或=号前后带空格。 6、支持\n、\r、\r\n或\n\r换行格式。 7、不区分section、key大小写,但写入时以新串为准,并保持其大小写。 8、新增数据时,若section存在则在该节最后一个有效数据后添加,否则在文件尾部添加。 9、支持指定key所在整行删除,即删除该键值,包括注释。 10、可自动跳过格式错误行,修改时仍然保留。 11、修改时保留原注释:包括整行注释、行尾注释(包括前面空格)。 12、修改时保留原空行。以上三点主要是尽量保留原格式。 不足之处: 1、不支持单key多value(逗号分割),只能一次性提取后自行处理。 2、不支持同名重复section和key。(重复section可视为错误,重复key则可能造成分歧) 3、不能提取所有section或key名称。 使用只需两个文件inirw.h、inirw.c,另有测试程序和工程文件,支持windows和linux。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值