保存/加载类列表到/从txt
本文关键字:txt 加载 保存 列表 | 更新日期: 2023-09-27 18:04:34
我有这样一个简单的类列表。
public class Album
{
public int IDNumber { get; set; }
public string AlbumName { get; set; }
public string Artist { get; set; }
public int ReleaseDate { get; set; }
public int TrackAmount { get; set; }
public string Location { get; set; }
public int Rating { get; set; }
public Album(int _id, string _name, string _artist, int _releasedate, int _trackamount, string _location, int _rating)
{
IDNumber = _id;
AlbumName = _name;
Artist = _artist;
ReleaseDate = _releasedate;
TrackAmount = _trackamount;
Location = _location;
Rating = _rating;
}
}
我需要将其保存到文件中,并从文件读取到列表。我对c#相当陌生,我的c++方法根本不起作用。有什么简单的方法吗?我希望它在文件中看起来像这样:
id albumname artist releasedate trackamout location rating
有什么简单的方法吗?
要将列表保存到文件中,可以像这样:
// create a writer and open the file
StreamWriter stream = new StreamWriter("myfile.txt");
foreach(Album album in myListOfAlbum)
{
// write a line of text to the file
stream.WriteLine(
album.IDNumber.ToString() + " " +
album.AlbumName.ToString() + " " +
...
...
);
}
// close the stream
stream.Close();
说……实际上,如果您也想从文件中加载列表,那么使用序列化将是最好的方法。
看一下序列化。
在页面的最后,你也会发现一个例子!
我也有类似的问题。我被建议使用NewtonSoft,它非常好。试试吧。创建Album
对象的实例,例如albumObj
,然后将该类序列化到文件
Album albumObj = new Album();
File.WriteAllText(@"C:'yourDirectory'example.json", JsonConvert.SerializeObject(albumObj));
类Album
中所有具有"get"访问器的公共属性将被序列化。您可以使用Formatting.Indented
使您的数据更具可读性,或者使用JsonIgnore
来忽略某些属性。它看起来像这样
File.WriteAllText(@"C:'yourDirectory'example.json", JsonConvert.SerializeObject(albumObj, Formatting.Indented));
不要忘记为NewtonSoft.Json安装软件包。你可以这样做:进入Tools->NuGet Package Manager-> Package Manager Console,然后粘贴
Install-Package Newtonsoft.Json
并按enter键。
之后你可以导入using Newtonsoft.Json