我错误地读取了一个配置文件的函数,但是如果指定了命令行arguement“-ip x.x.x.x”,我想覆盖配置文件中的IP设置。我使用下面的代码,它读得很好,但我的新行追加到最后。我怎样才能重写它正在阅读的线?
private static void ParsePropertiesFile(string file)
{
using (FileStream fs = new FileStream(file, FileMode.OpenOrCreate, FileAccess.ReadWrite))
{
StreamReader sr = new StreamReader(fs);
StreamWriter sw = new StreamWriter(fs);
string input;
while ((input = sr.ReadLine()) != null)
{
// SKIP COMMENT LINE
if (input.StartsWith("#"))
{
continue;
}
else
{
string[] line;
line = input.Split('=');
if (line[0] == "server-ip")
{
// If IP was not specified in the Command Line, use this instead
if (ServerSettings.IP == null)
{
// If the setting value is not blank
if (line[1] != null)
{
ServerSettings.IP = IPAddress.Parse(line[1]);
}
}
else
{
sw.("--REPLACE_TEST--");
sw.Flush();
}
}
}
}
}
}
为什么它会附加到最后,这是有道理的,但我想不出任何方法只重写该行,因为IP字符串可能比当前的更长。
答案 0 :(得分:1)
更简单的方法是读取所有行并替换要替换的行,然后再将新行添加到文件中,如:
string[] lines = File.ReadAllLines("Your file path");
for (int lineIndex = 0; lineIndex < lines.Length; lineIndex++)
{
if (/*if we want to modify this line..*/)
{
lines[lineIndex] = "new value";
}
}
File.AppendAllLines(lines);