-
在C#中输入和输出
C# 文件输入输出,通过代码实例讲解:
在外壳中,输入和输出 (I/O) 是指将数据读入或写入文件、控制台等。在 C# 中,有许多方法可以实现输入和输出。下面我们将通过代码实例讲解如何进行文件输入和输出。
一、文件读取
以下示例展示了如何使用`StreamReader`类读取文本文件中的内容。假设我们有一个名为“example.txt”的文本文件,包含以下内容:
二、文件写入
以下示例展示了如何使用`StreamWriter`类将文本写入文件。假设我们想要将以下内容写入一个名为“output.txt”的新文件:
最后,如果你对python语言还有任何疑问或者需要进一步的帮助,请访问https://www.xin3721.com 本站原创,转载请注明出处:https://www.xin3721.com/ArticlecSharp/c47825.html
在外壳中,输入和输出 (I/O) 是指将数据读入或写入文件、控制台等。在 C# 中,有许多方法可以实现输入和输出。下面我们将通过代码实例讲解如何进行文件输入和输出。
一、文件读取
以下示例展示了如何使用`StreamReader`类读取文本文件中的内容。假设我们有一个名为“example.txt”的文本文件,包含以下内容:
Hello World!
This is an example file.
以下是代码示例:This is an example file.
using System;
using System.IO;
class Program {
static void Main(string[] args) {
string filePath = @"C:example.txt";
using (StreamReader sr = new StreamReader(filePath)) {
string line;
while ((line = sr.ReadLine()) != null) {
Console.WriteLine(line);
}
}
}
}
在这个例子中,我们使用 `StreamReader` 类来打开文件并逐行读取其内容。当读取到文件的末尾时,`ReadLine()` 方法将返回 `null`,循环将终止。最后,我们使用 `Console.WriteLine()` 将读取的每一行输出到控制台。using System.IO;
class Program {
static void Main(string[] args) {
string filePath = @"C:example.txt";
using (StreamReader sr = new StreamReader(filePath)) {
string line;
while ((line = sr.ReadLine()) != null) {
Console.WriteLine(line);
}
}
}
}
二、文件写入
以下示例展示了如何使用`StreamWriter`类将文本写入文件。假设我们想要将以下内容写入一个名为“output.txt”的新文件:
This is an example for file output.
以下是代码示例:
using System;
using System.IO;
class Program {
static void Main(string[] args) {
string filePath = @"C:output.txt";
using (StreamWriter sw = new StreamWriter(filePath)) {
sw.WriteLine("This is an example for file output.");
}
}
}
在这个例子中,我们使用 `StreamWriter` 类来创建一个新文件并写入文本。我们使用 `WriteLine()` 方法将字符串写入文件,并在末尾自动添加换行符。注意,在使用 `StreamWriter` 写入文件时,如果文件已存在,则会被覆盖。using System.IO;
class Program {
static void Main(string[] args) {
string filePath = @"C:output.txt";
using (StreamWriter sw = new StreamWriter(filePath)) {
sw.WriteLine("This is an example for file output.");
}
}
}
最后,如果你对python语言还有任何疑问或者需要进一步的帮助,请访问https://www.xin3721.com 本站原创,转载请注明出处:https://www.xin3721.com/ArticlecSharp/c47825.html
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式