Чтение из BinaryWriter. Исключение NullReferenceException - C#

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

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

Создайте файл, содержащий записи о студентах из 3 групп (не менее 15). name - string; group - integer; marks – массив чисел byte (оценки по трём дисциплинам); возникает вопрос на этапе правильного чтения после записи ведь открываю в utf-8, но перед этим ошибка с ссылкой не указывающей на экземпляр объекта в методе заполнения
Листинг программы
  1. for (int i = 0; i < list.marks.Length; i++)
Листинг программы
  1. static void createDirectoryAndFile(out DirectoryInfo dir, string dirPath, string fileInitPath)
  2. {
  3. dir = new DirectoryInfo(dirPath);
  4. if (!dir.Exists)
  5. {
  6. dir.Create();
  7. //File.Create(dirPath + fileInitPath).Close();
  8. }
  9. if (!File.Exists(dirPath+fileInitPath))
  10. File.Create(dirPath + fileInitPath).Close();
  11. //writeInfo(dirPath + fileInitPath, mas);
  12. }
  13. struct StudentList
  14. {
  15. public string name;
  16. public int group;
  17. public byte[] marks;
  18. public StudentList(string name, int group, byte[] marksInit)
  19. {
  20. this.name = name;
  21. this.group = group;
  22. marks = new byte[3];//количество дисциплин определяет длину
  23. for (int i = 0; i < marks.Length; i++)
  24. marks[i] = marksInit[i];
  25. }
  26. }
  27. static void Write (StudentList list, string path)
  28. {
  29. using (FileStream fs = new FileStream(path, FileMode.Append, FileAccess.Write))
  30. {
  31. using (BinaryWriter bw = new BinaryWriter(fs))
  32. {
  33. bw.Write(list.name);
  34. bw.Write(list.group);
  35. for (int i = 0; i < list.marks.Length; i++)
  36. bw.Write(list.marks[i]);
  37. }
  38. }
  39. }
  40. static void Filling (StudentList list)
  41. {
  42. Random rand = new Random(DateTime.Now.Millisecond);
  43. list.name=Surname(12);//длина имени 12
  44. list.group=rand.Next(3);//3 группы
  45. for (int i = 0; i < list.marks.Length; i++)
  46. list.marks[i]=(byte)rand.Next(1,6);//1-5 возможные оценки
  47. }
  48. static string Surname(int length)
  49. {
  50. Random rand = new Random(DateTime.Now.Millisecond);
  51. string text = "";
  52. while (text.Length < rand.Next(length))
  53. {
  54. char element = (char)rand.Next(33, 125);
  55. if (Char.IsLetterOrDigit(element))
  56. text += element;
  57. }
  58. return text;
  59. }
  60. static void taskVita()
  61. {
  62. Clear();
  63. const string dirInitPath = @"C:\Users\Augustxeno\Desktop\code pr\технологии программирования\лабораторные\прочие каталоги\лабораторная 7", database="list.dat";
  64. DirectoryInfo dir;
  65. createDirectoryAndFile(out dir, dirInitPath, database);
  66. const byte students = 14;//15 студентов
  67. StudentList [] list=new StudentList[students];
  68. for (byte i = 0; i <= students; i++)
  69. {
  70. Filling(list[i]);
  71. Write(list[i], dirInitPath + database);
  72. }
  73. ReadKey();
  74. }
с hex editor разобрался

Решение задачи: «Чтение из BinaryWriter. Исключение NullReferenceException»

textual
Листинг программы
  1.             List<Student> studentsList = new List<Student>();
  2.  
  3.             using (FileStream fs = new FileStream(Path.Combine(dirInitPath, database), FileMode.Open))
  4.             using (BinaryReader br = new BinaryReader(fs))
  5.             {
  6.                 while (fs.Position != fs.Length)
  7.                 {
  8.                     string name = br.ReadString();
  9.                     int group = br.ReadInt32();
  10.                     byte[] marks = br.ReadBytes(3);
  11.                     studentsList.Add(new Student(name, group, marks));
  12.                 }
  13.             }

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


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

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

8   голосов , оценка 4.5 из 5

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

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

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