各位老师:在c#中如何把下面的打印内容存储到自动生成的TXT文件中,请给出具体代码(立即采纳)!!!!

如题所述

private void WriteText(string fileName, string text)
        {
            try
            {
                using (System.IO.StreamWriter sw = new System.IO.StreamWriter(fileName, true))
                {
                    sw.WriteLine(text);
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine(ex);
            }
        }
        
        //调用这个方法来打印数据,打印一条追加一条。替换原来的Console.WriteLine(str);
        private void PrintData(string str){
            Console.WriteLine(str);
            WriteText(@"C:/test.txt",str);
        }

你也可以使用追加的方式逐行写。

温馨提示:答案为网友推荐,仅供参考
相似回答
大家正在搜