如何在处理ini文件时在等号之间包含空格

本文关键字:之间 包含 空格 文件 处理 ini | 更新日期: 2023-09-27 18:03:10

嗨,我有一个ini文件,它的格式是这样的

[Text]
abcd = 1234
text = 1002
some = 4414
last = 1824

但是,当我使用inifile类时,我在网上找到了一个处理ini文件的类:

using System.IO;
using System.Reflection;
using System.Runtime.InteropServices;
using System.Text;
// Change this to match your program's normal namespace
namespace Program
{
    class IniFile   // revision 10
    {
        string Path;
        string EXE = Assembly.GetExecutingAssembly().GetName().Name;
        [DllImport("kernel32")]
        static extern long WritePrivateProfileString(string Section, string Key, string Value, string FilePath);
        [DllImport("kernel32")]
        static extern int GetPrivateProfileString(string Section, string Key, string Default, StringBuilder RetVal, int Size, string FilePath);
        public IniFile(string IniPath = null)
        {
            Path = new FileInfo(IniPath ?? EXE + ".ini").FullName.ToString();
        }
        public string Read(string Key, string Section = null)
        {
            var RetVal = new StringBuilder(255);
            GetPrivateProfileString(Section ?? EXE, Key, "", RetVal, 255, Path);
            return RetVal.ToString();
        }
        public void Write(string Key, string Value, string Section = null)
        {
            WritePrivateProfileString(Section ?? EXE, Key, Value, Path);
        }
        public void DeleteKey(string Key, string Section = null)
        {
            Write(Key, null, Section ?? EXE);
        }
        public void DeleteSection(string Section = null)
        {
            Write(null, null, Section ?? EXE);
        }
        public bool KeyExists(string Key, string Section = null)
        {
            return Read(Key, Section).Length > 0;
        }
    }
}

它可以添加到ini文件中,但是它的格式如下:

test=0010

除了write函数创建的对象之外,read函数也不能工作。

我怎样才能改变代码,使它在等号之前和之后放置空格?在值之前添加一个空格可以工作,但在键之后添加一个空格则不行。另外,我不愿意在值中添加空格,因为我担心它可能会改变实际值,使我使用它进行的操作无法读取。

如何在处理ini文件时在等号之间包含空格

下面是另一个IniFile类,它将使您能够实现该间距:https://github.com/MarioZ/MadMilkman.Ini

你需要做的是提供一个IniOptions所需的格式,像这样:

IniOptions options = new IniOptions();
options.KeySpaceAroundDelimiter = true;
IniFile ini = new IniFile(options);
ini.Load("path to your input INI file");
// Do something with file's sections and their keys ...
ini.Save("path to your output INI file");