欢迎来到【vipkid源码】【8路plc源码】【红色游戏挂机源码】readline 源码-皮皮网网站!!!

皮皮网

【vipkid源码】【8路plc源码】【红色游戏挂机源码】readline 源码-皮皮网 扫描左侧二维码访问本站手机端

【vipkid源码】【8路plc源码】【红色游戏挂机源码】readline 源码

2024-11-19 04:23:29 来源:{typename type="name"/} 分类:{typename type="name"/}

1.C#操作TXT文本的源码源代码!

readline 源码

C#操作TXT文本的源码vipkid源码源代码!

       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,源码8路plc源码 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();

源码在线 网页源码 显示

        }

源码在线 网页源码 显示

        }

源码在线 网页源码 显示

        }

源码在线 网页源码 显示

        }

源码在线 网页源码 显示

        }

源码在线 网页源码 显示

        }

源码在线 网页源码 显示

       }

源码在线 网页源码 显示