您好我有一个格式如下的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
除写入函数创建的函数外,read函数也不起作用。
我如何更改代码以便在等号前后放置空格?在值工作之前添加空格但在键之后添加空格不会。此外,我对在值中添加空格犹豫不决,因为我担心它可能会改变实际值,并使我可以使用它的可读性。
非常感谢任何见解,谢谢。
答案 0 :(得分:1)
这是另一个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");