実行時にユーザーが datagridview の値を変更した場合、テキストファイルを変更したいですか? これは、ファイルを読み取るための私のコードです。特定の場所にあるテキスト ファイルのデータを更新して書き込みたいと思います。
private void button1_Click(object sender, EventArgs e)
{
string line = "";
string text = "";
bool si = false;
int w = 0;
bool t = false;
bool counter = false;
int length = 0;
const Int32 BufferSize = 128;
int groupid = -1;
int stringid = -1;
string[] split;
int tnog = 0;
if (file.Contains("random.TST"))
{
using (var fileStream = File.OpenRead(this.file))
using (var streamReader = new StreamReader(fileStream, Encoding.UTF8, true, BufferSize))
while ((line = streamReader.ReadLine()) != null)
{
if (line.Contains('$') && (line.Contains('@') || line.Contains('}')))
{
split = line.Split(' ', '@', '}');
}
else if (line.Contains('$'))
{
}
else if (line.Contains('|'))
{
counter = false;
}
else if (!(counter))
{
split = line.Split(' ', '@');
for (int i = 0; i < split.Length; i++)
{
if (t)
{ }
else if (!t)
{
if (split[i].Trim() == "")
{
groupid = 0;
}
else if (split[i].Trim() != "")
{
groupid = Convert.ToInt16(split[i]);
t = true;
tnog++;
}
}
counter = true;
}
}
else if (counter)
{
//split = line.Split(' ');
if (line.Contains('|'))
{
counter = false;
}
else if (counter)
{
split = line.Split(' ', '@', '}');
for (int i = 0; i < split.Length; i++)
{
if (si)
{
if (split[i].Trim() == "")
{
//text[i] = " ";
}
else if (split[i].Trim() != "")
{
text += Convert.ToString(split[i]);
text += " ";
length = text.Length;
}
}
else if (!si)
{
if (split[i].Trim() == "")
{
// sid[i] = 0;
}
else if (split[i].Trim() != "")
{
stringid = Convert.ToInt16(split[i]);
si = true;
}
}
}
if ((groupid == -1) || (stringid == -1))
{ }
else
{
dataGridView1.Rows.Add(groupid, stringid, text, length);
text = "";
if (tnog % 2 == 0)
{
dataGridView1.Rows[w].DefaultCellStyle.ForeColor = Color.Gray;
dataGridView1.Rows[w].DefaultCellStyle.BackColor = Color.Yellow;
}
else
{
dataGridView1.Rows[w].DefaultCellStyle.ForeColor = Color.Plum;
dataGridView1.Rows[w].DefaultCellStyle.BackColor = Color.RoyalBlue;
}
w++;
}
si = false;
t = false;
}
}
}
textBox1.Text = Convert.ToString(tnog);
}
else
{
MessageBox.Show("Invalid File:");
}
}