新手坐等c#控制台console输出的数据保存到txt中。。。。
usingSystem;usingSystem.Collections.Generic;usingSystem.Linq;usingSystem.Text;namespa...
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello c#!");
Console.Read();
}
}
}
比如帮我把以上程序中的输出保存到指定的F盘的hello.txt中。要完整版的。。。谢谢高手 展开
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello c#!");
Console.Read();
}
}
}
比如帮我把以上程序中的输出保存到指定的F盘的hello.txt中。要完整版的。。。谢谢高手 展开
5个回答
展开全部
直接拷贝代码就ok了 记得更改txt文本路劲和那么属性
static void Main(string[] args)
{
string str;
Console.WriteLine("输入字符串:");
str = Console.ReadLine();
StreamWriter sw = new StreamWriter(@"c:\txtstr.txt", false); //这个是绝对路径
sw.WriteLine(str);
sw.Close();//写入
Console.WriteLine("按回车读出:");
Console.Read();
StreamReader sr = new StreamReader(@"c:\txtstr.txt", false);
str = sr.ReadLine().ToString();
sr.Close();
Console.WriteLine("文件中的字符串为:" + str);
Console.ReadKey();
}
static void Main(string[] args)
{
string str;
Console.WriteLine("输入字符串:");
str = Console.ReadLine();
StreamWriter sw = new StreamWriter(@"c:\txtstr.txt", false); //这个是绝对路径
sw.WriteLine(str);
sw.Close();//写入
Console.WriteLine("按回车读出:");
Console.Read();
StreamReader sr = new StreamReader(@"c:\txtstr.txt", false);
str = sr.ReadLine().ToString();
sr.Close();
Console.WriteLine("文件中的字符串为:" + str);
Console.ReadKey();
}
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text; using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello c#!");
Console.WriteLine("按任意键保存!");
Console.ReadLine();
StreamWriter F = new StreamWriter("F:\\hello.txt", false);
F.WriteLine("Hello c#!");
F.Close();
Console.WriteLine("保存成功!");
Console.ReadKey();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text; using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello c#!");
Console.WriteLine("按任意键保存!");
Console.ReadLine();
StreamWriter F = new StreamWriter("F:\\hello.txt", false);
F.WriteLine("Hello c#!");
F.Close();
Console.WriteLine("保存成功!");
Console.ReadKey();
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐于2016-05-13
展开全部
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello c#!");
Console.WriteLine("按任意键保存!");
Console.ReadLine();
StreamWriter f = new StreamWriter(@"f:\hello.txt", false);
f.WriteLine("Hello c#!");
f.Close();
Console.WriteLine("保存成功!");
Console.ReadKey();
}
}
}
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello c#!");
Console.WriteLine("按任意键保存!");
Console.ReadLine();
StreamWriter f = new StreamWriter(@"f:\hello.txt", false);
f.WriteLine("Hello c#!");
f.Close();
Console.WriteLine("保存成功!");
Console.ReadKey();
}
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没一次输出都写自己写文件多麻烦啊,去看下log4j这个组件,我记得好像有个.net版本的。直接配置一下,然后调用一个很简单的方法就行。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询