c#中对txt文件的读取与写入,针对二维数组


class Program
    {
        public static int ROW = 5;
        public static int COL = 6;
        static string[,] str = new string[ROW, COL];

        static void Main(string[] args)
        {
            Read();
            Write();
        }
        public static void Read()
        {
            string[] a;
            StreamReader sr = new StreamReader("D:\\imx_2016-2017\\study\\001.txt", Encoding.Default);
            for (int i = 0; i < ROW; i++)
            {
                String line = sr.ReadLine();
                a = line.Split(',');
                for (int j = 0; j < COL; j++)
                {
                    str[i, j] = a[j];
                    //Console.Write(str[i, j]);
                    //Console.Write("\t");
                }
                //Console.WriteLine();
            }
            //Console.ReadKey();
        }
        public static void Write()
        {
            FileStream fs = new FileStream("D:\\imx_2016-2017\\study\\002.txt", FileMode.Create);
            StreamWriter sw = new StreamWriter(fs);
            for (int i = 0; i < ROW; i++)
            {
                for (int j = 0; j < COL; j++)
                {
                    sw.Write(str[i,j]);
                }
                sw.WriteLine();
            }
            //清空缓冲区
            sw.Flush();
            //关闭流
            sw.Close();
            fs.Close();
        }
    }

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM