c#如何读取txt文件中指定内容段的数据?如下所示格式:

2024-12-25 08:07:30
推荐回答(5个)
回答1:

这个不是ini 配置文件吗
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
namespace ini
{
class RWIni
{
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);

///


/// 写入INI文件
///

/// 节点名称
/// 关键字
///
/// INI文件路径
static public void IniWriteValue(string Section, string Key, string Value, string filepath)
{
WritePrivateProfileString(Section, Key, Value, filepath);
}
///
/// 读取INI文件
///

/// 节点名称
/// 关键字
/// INI文件路径
///
static public string IniReadValue(string Section, string Key, string filepath)
{
StringBuilder temp = new StringBuilder(255);
int i = GetPrivateProfileString(Section, Key, "", temp,
255, filepath);
return temp.ToString();
}
}
}

回答2:

我记得有逐行读取的函数 放入一个string str[]数组里 然后再去数组里寻找contain的元素

回答3:

你这存的格式也太乱了,加上开始和结束标签多方便

回答4:

建议去学学XML,最适合信息保存了

回答5:

参考一下ini文件的操作