Как работать с текстовыми файлами - C#

Узнай цену своей работы

Формулировка задачи:

Уважаемые! Для допуска к экзамену мне надо написать программу. Я выбрал C#. И почти вначале столкнулся с проблемой: в условии задания сказано создать базу данных в виде текстового файла, но с операциями работы с текстом в C# мне сталкиваться не приходилось. Прошу помочь и написать здесь: как обратиться к файлу текста, как "вытащить" нужное предложение или слово из файла и т.д. Посоветуйте в каком тестовом редакторе лучше всего писать базу данных.

Решение задачи: «Как работать с текстовыми файлами»

textual
Листинг программы
  1. using System;
  2. using System.Windows.Forms;
  3. using System.IO;
  4.  
  5. namespace DataGridViewExample
  6. {
  7.     public partial class Form1 : Form
  8.     {
  9.         public Form1()
  10.         {
  11.             InitializeComponent();
  12.         }
  13.  
  14.         private void Form1_Load(object sender, EventArgs e)
  15.         {
  16.             // Open the contact_list file for reading. File is placed in the debug folder.
  17.             StreamReader sr = new StreamReader("contact_list.txt");
  18.             // Variable to store each row.
  19.             string dataRow = "";
  20.             // String array needed to determin number of columns to use.
  21.             string[] headerRow;
  22.  
  23.             int columns = 0;
  24.             // Object array used to store each line of data from the text file.
  25.             object[] row;
  26.  
  27.             // Read the first line of the text file. Then split the data using a comma character
  28.             headerRow = sr.ReadLine().Split(',');
  29.             // Store the length of headerRow string array, this will tell us how many columns we need.
  30.             columns = headerRow.Length;
  31.  
  32.             // "For Loop" below is used to add column headers to the DataGridView control. The name of each column
  33.             // header begins with "Header" followed by a number.
  34.  
  35.             for (int cols = 0; cols < columns; cols++)
  36.             {
  37.                 dgv.Columns.Add("Header " + cols, "Header " + cols);
  38.             }
  39.  
  40.             // At this point, column headers have been added.
  41.             // Now all that remains is to add the rows. Read the file line by line, using a while loop
  42.             // and the ReadLine() method. When reading each line make sure it is not a blank line. If it is a blank line
  43.             // skip the line and read the next line.
  44.  
  45.             while ((dataRow = sr.ReadLine()) != null)
  46.             {
  47.                 if (dataRow != "")
  48.                 {
  49.                     row = dataRow.Split(','); // Split the dataRow string variable and store each data into an Object array.
  50.                     dgv.Rows.Add(row); // Add the row.
  51.                 }
  52.             }
  53.  
  54.         }
  55.     }
  56. }

ИИ поможет Вам:


  • решить любую задачу по программированию
  • объяснить код
  • расставить комментарии в коде
  • и т.д
Попробуйте бесплатно

Оцени полезность:

14   голосов , оценка 3.786 из 5

Нужна аналогичная работа?

Оформи быстрый заказ и узнай стоимость

Бесплатно
Оформите заказ и авторы начнут откликаться уже через 10 минут
Похожие ответы