最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

C#實(shí)現(xiàn)逐行讀取和寫入文件的方法

 更新時間:2024年01月30日 10:12:25   作者:雪域迷影  
這篇文章給大家介紹了使用C#語言實(shí)現(xiàn)同樣的功能,即從輸入文件中讀取每行數(shù)據(jù),然后將每行字段組合成SQL插入腳本,然后逐行寫入另外一個空白文件中,感興趣的朋友可以參考下

tb_param表的結(jié)構(gòu)

tb_param表的結(jié)構(gòu)如下:

tb_param

tb_data

創(chuàng)建表的SQL腳本如下,我使用的是Sqlite數(shù)據(jù)庫

 DROP TABLE IF EXISTS "main"."tb_param";
CREATE TABLE tb_param(protocol INT NOT NULL,slave INT NOT NULL,number INT NOT NULL,ptype INT NOT NULL,pid INT NOT NULL,name TEXT NOT NULL,format TEXT,PRIMARY KEY(protocol,slave,number,ptype,pid));

前面使用nodejs實(shí)現(xiàn)從input.txt文件逐行讀取數(shù)據(jù),然后將每行數(shù)據(jù)拼接成如下的數(shù)據(jù)格式:

INSERT INTO tb_param (protocol, slave, number, ptype, pid, name, format) 
VALUES (2, 6, 0, 1, 1, 'a34004', .0);

輸入文件 input.txt示例如下:

2	24	0	1	1	a04005	.3
2	24	0	1	2	a04006	.3
2	24	0	1	3	a04007	.3
2	16	0	1	1	a99501	.3
2	16	0	1	2	a99502	.3
2	16	0	1	3	a99500	.3
2	16	0	1	4	a99505	.3
2	16	0	1	5	a99504	.3
2	16	0	1	6	a99503	.3
2	22	0	1	23	a24901	.3
2	22	0	1	27	a24904	.3
2	22	0	1	28	a24905	.3
2	22	0	1	29	a24042	.3
2	22	0	1	36	a25002	.3
2	22	0	1	33	a24036	.3
2	22	0	1	32	a24908	.3
2	22	0	1	34	a24909	.3
2	22	0	1	35	a24910	.3
2	22	0	1	37	a24012	.3
2	22	0	1	38	a24043	.3
2	22	0	1	39	a24084	.3
2	22	0	1	40	a24911	.3
2	22	0	1	43	a25003	.3
2	22	0	1	41	a24912	.3
2	22	0	1	42	a24913	.3
2	22	0	1	44	a24070	.3
2	22	0	1	45	a25004	.3
2	22	0	1	47	a25008	.3
2	22	0	1	49	a25038	.3
2	22	0	1	48	a25006	.3
2	22	0	1	46	a24044	.3
2	22	0	1	50	a25034	.3
2	22	0	1	51	a25033	.3
2	22	0	1	52	a25902	.3
2	22	0	1	53	a25014	.3
2	22	0	1	55	a25021	.3
2	22	0	1	56	a25901	.3
2	22	0	1	57	a25019	.3
2	22	0	1	54	a24068	.3
2	22	0	1	58	a25020	.3
2	22	0	1	59	a25903	.3
2	22	0	1	60	a25904	.3
2	22	0	1	61	a24914	.3
2	22	0	1	62	a24915	.3
2	22	0	1	1	a24001	.3
2	22	0	1	2	a24045	.3
2	22	0	1	3	a24002	.3
2	22	0	1	4	a24053	.3
2	22	0	1	5	a24038	.3
2	22	0	1	6	a24037	.3
2	22	0	1	7	a24079	.3
2	22	0	1	8	a24064	.3
2	22	0	1	11	a24063	.3
2	22	0	1	12	a24902	.3
2	22	0	1	13	a24041	.3
2	22	0	1	14	a24039	.3
2	22	0	1	20	a24077	.3
2	22	0	1	18	a24074	.3
2	22	0	1	22	a24076	.3
2	22	0	1	31	a24907	.3
2	22	0	1	24	a24903	.3
2	22	0	1	25	a24011	.3
2	22	0	1	21	a24061	.3
2	22	0	1	30	a24906	.3
2	22	0	1	104	a31005	.3
2	22	0	1	206	a24072	.3
2	22	0	1	221	a05009	.3
2	22	0	1	65	a05014	.3
2	22	0	1	66	a24099	.3
2	22	0	1	67	a24046	.3
2	22	0	1	15	a24078	.3
2	22	0	1	68	a24008	.3
2	22	0	1	69	a24015	.3
2	22	0	1	70	a24916	.3
2	22	0	1	96	a31004	.3
2	22	0	1	97	a31003	.3
2	22	0	1	72	a24047	.3
2	22	0	1	71	a05013	.3
2	22	0	1	98	a31024	.3
2	22	0	1	73	a24100	.3
2	22	0	1	74	a24003	.3
2	22	0	1	101	a28006	.3
2	22	0	1	75	a24016	.3
2	22	0	1	76	a24111	.3
2	22	0	1	77	a24004	.3
2	22	0	1	78	a24018	.3
2	22	0	1	79	a24005	.3
2	22	0	1	80	a24017	.3
2	22	0	1	81	a24049	.3
2	22	0	1	82	a24027	.3
2	22	0	1	83	a24007	.3
2	22	0	1	85	a24112	.3
2	22	0	1	84	a24054	.3
2	22	0	1	86	a24019	.3
2	22	0	1	87	a24050	.3
2	22	0	1	88	a24034	.3
2	22	0	1	89	a25010	.3
2	22	0	1	90	a24009	.3
2	22	0	1	91	a24020	.3
2	22	0	1	92	a25012	.3
2	22	0	1	95	a25011	.3
2	22	0	1	215	a30008	.3
2	22	0	1	219	a99051	.3
2	22	0	1	201	a29026	.3
2	22	0	1	208	a29017	.3
2	22	0	1	106	a31025	.3
2	22	0	1	209	a24110	.3
2	22	0	1	203	a25072	.3
2	22	0	1	222	a29015	.3
2	22	0	1	202	a31030	.3
2	22	0	1	211	a31027	.3
2	22	0	1	207	a24006	.3
2	22	0	1	93	a25013	.3
2	22	0	1	94	a25068	.3
2	22	0	1	204	a25015	.3
2	22	0	1	223	a24113	.3
2	22	0	1	224	a25059	.3
2	22	0	1	9	a24919	.3
2	22	0	1	213	a30003	.3
2	17	0	1	1	a99070	.0
2	17	0	1	2	a99071	.0
2	17	0	1	3	a99072	.0
2	17	0	1	4	a99073	.0
2	17	0	1	5	a99074	.0
2	17	0	1	6	a99075	.0
2	17	0	1	7	a99076	.0
2	17	0	1	8	a99077	.0
2	17	0	1	9	a99078	.0
2	17	0	1	10	a99079	.0
2	17	0	1	11	a99080	.0
2	17	0	1	12	a99081	.0
2	17	0	1	13	a99082	.0
2	17	0	1	14	a99083	.0
2	17	0	1	15	a99084	.0
2	17	0	1	16	a99085	.0
2	17	0	1	17	a99086	.0
2	17	0	1	18	a99087	.0
2	17	0	1	19	a99088	.0
2	17	0	1	20	a99089	.0
2	17	0	1	21	a99090	.0
2	17	0	1	22	a99091	.0
2	17	0	1	23	a99092	.0
2	17	0	1	24	a99093	.0
2	17	0	1	25	a99094	.0
2	17	0	1	26	a99095	.0
2	17	0	1	27	a99096	.0
2	17	0	1	28	a99097	.0
2	17	0	1	29	a99098	.0
2	17	0	1	30	a99099	.0
2	17	0	1	31	a99100	.0
2	17	0	1	32	a99101	.0
2	17	0	1	35	a99102	.1
2	17	0	1	36	a99103	.1
2	17	0	1	37	a99104	.1

C#語言實(shí)現(xiàn)代碼

Program.cs 代碼如下:

using System;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

// c#逐行讀取txt文件
// https://www.cnblogs.com/trvatwang/p/4602597.html
// C# 向文本文件中逐行讀寫文件
// https://blog.csdn.net/lovefenglinshi/article/details/24433177
// C# 逐行讀取文本文件
// https://www.delftstack.com/zh/howto/csharp/how-to-read-a-text-file-line-by-line-in-csharp/

namespace ReadFiles
{
    class Program
    {
        private static String strFileName = @"./input.txt";
        static void Main(string[] args)
        {
            StreamWriter sw = new StreamWriter("./output.txt", true, System.Text.Encoding.Default);
            StreamReader sr = new StreamReader(strFileName);
            // 記錄行號
            //int iLineNum = 0;
            while(!sr.EndOfStream)
            {
                string strLine = sr.ReadLine();
                //Console.WriteLine("{0} : {1}",++iLineNum, strLine);
                // 處理每一行數(shù)據(jù)
                String[] strColsArr = strLine.Split('\t');
                if (strColsArr.Length >= 7)
                {
                    try
                    {
                        int protocol = Convert.ToInt32(strColsArr[0]);
                        int slave = Convert.ToInt32(strColsArr[1]);
                        int number = Convert.ToInt32(strColsArr[2]);
                        int ptype = Convert.ToInt32(strColsArr[3]);
                        int pid = Convert.ToInt32(strColsArr[4]);

                        string strName = strColsArr[5];
                        string strFormat = strColsArr[6];

                        string strResult = string.Format("INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)\n " +
                            "VALUES({0}, {1}, {2}, {3}, {4}, '{5}', '{6}');", protocol, slave, number, ptype, pid, strName, strFormat);
                        Console.WriteLine(strResult);
                        sw.WriteLine(strResult);
                    }
                    catch(Exception e)
                    {
                        Console.WriteLine(e.Message);
                    }
                }
            }
            sr.Close();
            sw.Close();
            Console.ReadKey();
        }
    }
}

運(yùn)行上述代碼并獲得輸出

在VS2017中運(yùn)行上述C#控制臺程序
得到輸出文件output.txt如下所示:

INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 24, 0, 1, 1, 'a04005', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 24, 0, 1, 2, 'a04006', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 24, 0, 1, 3, 'a04007', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 16, 0, 1, 1, 'a99501', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 16, 0, 1, 2, 'a99502', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 16, 0, 1, 3, 'a99500', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 16, 0, 1, 4, 'a99505', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 16, 0, 1, 5, 'a99504', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 16, 0, 1, 6, 'a99503', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 23, 'a24901', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 27, 'a24904', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 28, 'a24905', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 29, 'a24042', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 36, 'a25002', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 33, 'a24036', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 32, 'a24908', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 34, 'a24909', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 35, 'a24910', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 37, 'a24012', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 38, 'a24043', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 39, 'a24084', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 40, 'a24911', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 43, 'a25003', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 41, 'a24912', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 42, 'a24913', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 44, 'a24070', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 45, 'a25004', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 47, 'a25008', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 49, 'a25038', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 48, 'a25006', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 46, 'a24044', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 50, 'a25034', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 51, 'a25033', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 52, 'a25902', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 53, 'a25014', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 55, 'a25021', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 56, 'a25901', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 57, 'a25019', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 54, 'a24068', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 58, 'a25020', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 59, 'a25903', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 60, 'a25904', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 61, 'a24914', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 62, 'a24915', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 1, 'a24001', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 2, 'a24045', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 3, 'a24002', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 4, 'a24053', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 5, 'a24038', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 6, 'a24037', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 7, 'a24079', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 8, 'a24064', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 11, 'a24063', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 12, 'a24902', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 13, 'a24041', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 14, 'a24039', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 20, 'a24077', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 18, 'a24074', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 22, 'a24076', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 31, 'a24907', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 24, 'a24903', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 25, 'a24011', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 21, 'a24061', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 30, 'a24906', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 104, 'a31005', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 206, 'a24072', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 221, 'a05009', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 65, 'a05014', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 66, 'a24099', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 67, 'a24046', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 15, 'a24078', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 68, 'a24008', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 69, 'a24015', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 70, 'a24916', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 96, 'a31004', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 97, 'a31003', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 72, 'a24047', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 71, 'a05013', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 98, 'a31024', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 73, 'a24100', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 74, 'a24003', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 101, 'a28006', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 75, 'a24016', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 76, 'a24111', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 77, 'a24004', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 78, 'a24018', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 79, 'a24005', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 80, 'a24017', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 81, 'a24049', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 82, 'a24027', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 83, 'a24007', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 85, 'a24112', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 84, 'a24054', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 86, 'a24019', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 87, 'a24050', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 88, 'a24034', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 89, 'a25010', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 90, 'a24009', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 91, 'a24020', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 92, 'a25012', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 95, 'a25011', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 215, 'a30008', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 219, 'a99051', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 201, 'a29026', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 208, 'a29017', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 106, 'a31025', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 209, 'a24110', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 203, 'a25072', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 222, 'a29015', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 202, 'a31030', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 211, 'a31027', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 207, 'a24006', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 93, 'a25013', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 94, 'a25068', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 204, 'a25015', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 223, 'a24113', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 224, 'a25059', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 9, 'a24919', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 22, 0, 1, 213, 'a30003', '.3');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 1, 'a99070', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 2, 'a99071', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 3, 'a99072', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 4, 'a99073', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 5, 'a99074', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 6, 'a99075', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 7, 'a99076', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 8, 'a99077', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 9, 'a99078', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 10, 'a99079', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 11, 'a99080', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 12, 'a99081', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 13, 'a99082', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 14, 'a99083', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 15, 'a99084', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 16, 'a99085', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 17, 'a99086', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 18, 'a99087', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 19, 'a99088', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 20, 'a99089', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 21, 'a99090', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 22, 'a99091', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 23, 'a99092', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 24, 'a99093', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 25, 'a99094', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 26, 'a99095', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 27, 'a99096', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 28, 'a99097', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 29, 'a99098', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 30, 'a99099', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 31, 'a99100', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 32, 'a99101', '.0');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 35, 'a99102', '.1');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 36, 'a99103', '.1');
INSERT INTO tb_param(protocol, slave, number, ptype, pid, name, format)
 VALUES(2, 17, 0, 1, 37, 'a99104', '.1');

小結(jié)

到此這篇關(guān)于C#實(shí)現(xiàn)逐行讀取和寫入文件的方法的文章就介紹到這了,更多相關(guān)C#逐行讀取和寫入文件內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

相關(guān)文章

  • C#刪除整個目錄及子目錄的方法

    C#刪除整個目錄及子目錄的方法

    這篇文章主要介紹了C#刪除整個目錄及子目錄的方法,涉及C#操作目錄刪除的相關(guān)技巧,需要的朋友可以參考下
    2015-04-04
  • C#基于正則表達(dá)式抓取a標(biāo)簽鏈接和innerhtml的方法

    C#基于正則表達(dá)式抓取a標(biāo)簽鏈接和innerhtml的方法

    這篇文章主要介紹了C#基于正則表達(dá)式抓取a標(biāo)簽鏈接和innerhtml的方法,結(jié)合實(shí)例形式分析了C#使用正則表達(dá)式進(jìn)行頁面元素的匹配與抓取相關(guān)操作技巧,需要的朋友可以參考下
    2017-06-06
  • C# GC回收的方法實(shí)現(xiàn)

    C# GC回收的方法實(shí)現(xiàn)

    本文主要介紹了C# GC回收的方法實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧
    2025-11-11
  • C# StringBuilder和string

    C# StringBuilder和string

    這篇文章主要介紹了C# StringBuilder和string,文章圍繞StringBuilder和string的相關(guān)資料展開內(nèi)容,需要的朋友可以參考一下
    2021-11-11
  • C#中添加窗口的步驟詳解

    C#中添加窗口的步驟詳解

    下面小編就為大家?guī)硪黄狢#中添加窗口的步驟詳解。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-02-02
  • winform c#中子窗體關(guān)閉刷新父窗體的實(shí)例

    winform c#中子窗體關(guān)閉刷新父窗體的實(shí)例

    下面小編就為大家?guī)硪黄獁inform c#中子窗體關(guān)閉刷新父窗體的實(shí)例。小編覺得挺不錯的,現(xiàn)在就分享給大家,也給大家做個參考。一起跟隨小編過來看看吧
    2017-02-02
  • C#Js時間格式化問題簡單實(shí)例

    C#Js時間格式化問題簡單實(shí)例

    這篇文章介紹了C#Js時間格式化問題簡單實(shí)例,有需要的朋友可以參考一下
    2013-10-10
  • c# WPF如何實(shí)現(xiàn)滾動顯示的TextBlock

    c# WPF如何實(shí)現(xiàn)滾動顯示的TextBlock

    這篇文章主要介紹了c# WPF如何實(shí)現(xiàn)滾動顯示的TextBlock,幫助大家更好的理解和學(xué)習(xí)使用c#,感興趣的朋友可以了解下
    2021-03-03
  • C#?Sqlite數(shù)據(jù)庫的搭建及使用技巧

    C#?Sqlite數(shù)據(jù)庫的搭建及使用技巧

    這篇文章主要介紹了C#?Sqlite數(shù)據(jù)庫的搭建及使用技巧,文章圍繞主題展開詳細(xì)的內(nèi)容介紹,具有一定的參考價值,需要的朋友可以參考一下
    2022-08-08
  • C#實(shí)現(xiàn)遠(yuǎn)程連接ORACLE數(shù)據(jù)庫的方法

    C#實(shí)現(xiàn)遠(yuǎn)程連接ORACLE數(shù)據(jù)庫的方法

    這篇文章主要介紹了C#實(shí)現(xiàn)遠(yuǎn)程連接ORACLE數(shù)據(jù)庫的方法,通過自定義函數(shù)db_connection_test實(shí)現(xiàn)遠(yuǎn)程連接Oracle數(shù)據(jù)庫的功能,是非常實(shí)用的技巧,需要的朋友可以參考下
    2014-12-12

最新評論

陵川县| 福安市| 白河县| 宜春市| 威海市| 遂昌县| 岳池县| 沁阳市| 富阳市| 临清市| 微山县| 广水市| 方山县| 哈密市| 新丰县| 金华市| 大石桥市| 乡宁县| 银川市| 安化县| 确山县| 从化市| 五寨县| 廉江市| 社会| 安陆市| 灵丘县| 桃江县| 桓仁| 清徐县| 正阳县| 长阳| 张家港市| 蓬安县| 格尔木市| 祁门县| 昭通市| 门头沟区| 汶上县| 汉寿县| 万山特区|