Упражнения C # Sharp: создайте файл с текстом и прочитайте файл
Обработка файлов в C # Sharp: упражнение 5 с решением
Напишите программу на C # Sharp, чтобы создать файл с текстом и прочитать файл.
Пример решения : -
C # острый код:
using System;
using System.IO;
using System.Text;
class filexercise3
{
public static void Main()
{
string fileName = @"mytest.txt";
try
{
// Delete the file if it exists.
if (File.Exists(fileName))
{
File.Delete(fileName);
}
Console.Write("\n\n Create a file with text and read the file :\n");
Console.Write("-------------------------------------------------\n");
// Create the file.
using (StreamWriter fileStr = File.CreateText(fileName))
{
fileStr.WriteLine(" Hello and Welcome");
fileStr.WriteLine(" It is the first content");
fileStr.WriteLine(" of the text file mytest.txt");
}
using (StreamReader sr = File.OpenText(fileName))
{
string s = "";
Console.WriteLine(" Here is the content of the file mytest.txt : ");
while ((s = sr.ReadLine()) != null)
{
Console.WriteLine(s);
}
Console.WriteLine("");
}
}
catch (Exception MyExcep)
{
Console.WriteLine(MyExcep.ToString());
}
}
}
Пример вывода:
Создайте файл с текстом и прочитайте файл: ------------------------------------------------- Вот содержимое файла mytest.txt: Привет и добро пожаловать Это первый контент текстового файла mytest.txt
Блок-схема:
Редактор кода C # Sharp:
Улучшите этот пример решения и опубликуйте свой код через Disqus
Предыдущий: Напишите программу на C # Sharp, чтобы создать файл и добавить текст.
Далее: Напишите программу на C # Sharp для создания файла и записи массива строк в файл.
Каков уровень сложности этого упражнения?
Новый контент: Composer: менеджер зависимостей для PHP , R программирования
disqus2code