Grupo
Persistencia de Objetos en C#
Objectivo
1. Cree un array simple de enteros.
2. Implemente un método para escribir los datos del array en un archivo binario.
3. Implemente un método para leer los datos del array desde el archivo binario y restaurarlos.
4. Visualice los datos del array antes y después de la restauración para garantizar su correcto funcionamiento.
Amplíe el ejercicio (tablas + array) añadiendo dos métodos nuevos para volcar los datos del array en un archivo binario y restaurarlos desde este.
Ejemplo de ejercicio en C#
Mostrar código C#
using System;
using System.IO;
class Program
{
// Method to dump the array data into a binary file
static void DumpDataToFile(int[] array, string fileName)
{
// Creating a FileStream to write data to a file
using (FileStream fs = new FileStream(fileName, FileMode.Create))
{
// Creating a BinaryWriter to write primitive data types to the file
using (BinaryWriter writer = new BinaryWriter(fs))
{
// Writing the length of the array first
writer.Write(array.Length);
// Writing the array elements to the file
foreach (int value in array)
{
writer.Write(value);
}
}
}
}
// Method to restore the array data from a binary file
static int[] RestoreDataFromFile(string fileName)
{
// Creating a FileStream to read data from the file
using (FileStream fs = new FileStream(fileName, FileMode.Open))
{
// Creating a BinaryReader to read the primitive data types from the file
using (BinaryReader reader = new BinaryReader(fs))
{
// Reading the length of the array first
int length = reader.ReadInt32();
int[] array = new int[length];
// Reading the array elements from the file
for (int i = 0; i < length; i++)
{
array[i] = reader.ReadInt32();
}
return array;
}
}
}
static void Main()
{
// Creating an example array
int[] numbers = { 1, 2, 3, 4, 5 };
// File name where the data will be stored
string fileName = "arrayData.bin";
// Dumping the array data into the binary file
DumpDataToFile(numbers, fileName);
Console.WriteLine("Data dumped to binary file.");
// Restoring the array data from the binary file
int[] restoredArray = RestoreDataFromFile(fileName);
Console.WriteLine("Data restored from binary file:");
// Displaying the restored array
foreach (int number in restoredArray)
{
Console.WriteLine(number);
}
}
}
Output
Data dumped to binary file.
Data restored from binary file:
1
2
3
4
5
Código de ejemplo copiado
Comparte este ejercicio de C#