1.C读取txt数据的阅阅读另一种方法(偷懒方法)
2.C#操作TXT文本的源代码!
C读取txt数据的读源代码另一种方法(偷懒方法)
平常我们用C语言读取txt文件数据时,流程相对繁琐。器源
不过最近发现了一种更简单的阅阅读大侠传源码方法,只需一行代码就能读取txt文件。读源代码
例如,器源战棋天下源码abc.txt的阅阅读内容如下:
使用这种方法后,操作变得既方便又快捷。读源代码
感谢评论区的器源朋友们提醒。
需要注意的阅阅读是,这种方法是读源代码在编译期确定的,适用于固定数据,器源与直接在源码中写入数据类似。阅阅读粒子跟随源码但在实际应用中,读源代码读取的器源数据往往需要变化,且需要编写代码。淘金指标源码小饼干建议。
C#操作TXT文本的源代码!
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
namespace OutputText
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.Load += new EventHandler(Form1_Load);
}
void Form1_Load(object sender,无尽对决源码 EventArgs e)
{
this.btnShow.Click += new EventHandler(btnShow_Click);
}
void btnShow_Click(object sender, EventArgs e)
{
// 判断输入的行数
string input = this.txtInput.Text.Trim();
//用于读文本的时候记数
int numOfTextFile;
// int.TryParse验证输入的是不是行数
if (int.TryParse(input, out numOfTextFile))
{
//StreamReader 打开文件
using(StreamReader sr = new StreamReader(@"D:\text.txt"))
{
int count=0;
// ReadLine 读一行
string txtContent = sr.ReadLine();
while (txtContent != null)
{
//读一行记一下数
count++;
//如果和你要求的输入行数匹配,显示文本,中断循环
if (count == numOfTextFile)
{
this.textBox1.Text = txtContent;
this.textBox2.Text = txtContent;
this.textBox3.Text = sr.ReadLine();
break;
}
else
{
txtContent = sr.ReadLine();
}
}
}
}
}
}
}
2024-11-25 18:26
2024-11-25 18:04
2024-11-25 17:38
2024-11-25 17:14
2024-11-25 17:10
2024-11-25 16:47