728x90
728x170
구조체를 json 문자열로 관리하는 코드예시입니다.
구조체를 문자열로 만들고 추가 및 제거, 수정하는 코드입니다.
using Newtonsoft.Json;
using System.Collections.Generic;
using System.IO;
using System.Linq;
public class JsonCrudExample
{
private const string FilePath = "people.json";
public static void CreatePerson(Person person)
{
List<Person> people = ReadPeople();
people.Add(person);
SavePeople(people);
}
public static List<Person> ReadPeople()
{
if (!File.Exists(FilePath))
{
return new List<Person>();
}
using (StreamReader file = File.OpenText(FilePath))
{
JsonSerializer serializer = new JsonSerializer();
return (List<Person>)serializer.Deserialize(file, typeof(List<Person>));
}
}
public static void UpdatePerson(Person updatedPerson)
{
List<Person> people = ReadPeople();
var existingPerson = people.FirstOrDefault(p => p.Id == updatedPerson.Id);
if (existingPerson != null)
{
existingPerson.Name = updatedPerson.Name;
existingPerson.Age = updatedPerson.Age;
SavePeople(people);
}
}
public static void DeletePerson(int id)
{
List<Person> people = ReadPeople();
var personToRemove = people.FirstOrDefault(p => p.Id == id);
if (personToRemove != null)
{
people.Remove(personToRemove);
SavePeople(people);
}
}
private static void SavePeople(List<Person> people)
{
using (StreamWriter file = File.CreateText(FilePath))
{
JsonSerializer serializer = new JsonSerializer();
serializer.Serialize(file, people);
}
}
}
728x90
그리드형
'C#' 카테고리의 다른 글
[C#] Python 의 numpy 함수를 C# 에서 사용하고 싶을 때 NumSharp (0) | 2023.06.29 |
---|---|
[C#] Datatable Merge 하기 (0) | 2023.06.29 |
[C#] 로또 번호 추출하기 (0) | 2023.06.28 |
[C#] Entity Framework Core 에서 필드 Auto Increment 필드 처리하기 (0) | 2023.06.18 |
[C#] Entity Framework Core 에서 특정 필드 테이블에서 제외하기 (0) | 2023.06.18 |