gpt4 book ai didi

c# - 如何存储和序列化列表以避免长字符串

转载 作者:太空狗 更新时间:2023-10-30 00:47:41 26 4
gpt4 key购买 nike

我在存储信息时遇到了一些问题。问题来了,因为在保存列表时,即使信息看起来很短,我也会得到很长的字符串。

假设我有 100 栋房子,我想保存每栋房子里有多少人。我用这个:

房子.cs

[System.Serializable]
public class Houses
{
public int ID { get; set; }
public int PEOPLE { get; set; }

public Houses(int _ID, int _PEOPLE)
{
ID = _ID;
PEOPLE = _PEOPLE ;
}
}

然后在另一个脚本中我有:

public List<Houses> HousesList = new List<Houses>();
void Awake()
{
HousesList.Add(new Houses(0,0));
//repeat until 100 (or more) I use a loop to initialize it
}

然后添加我说的人:

HousesList[3].PEOPLE+=5;

然后为了保存,我使用 BinaryFormatter/MemoryStream 方式,但即使列表只有一个 ID 和一个值,结果序列化字符串也有 4,000-5,000 个字符。

为了存储少量数据,我使用相同的系统,但只有一个列表:

Houses.Add(new Houses(0,2,0,0,1)); // house 1, house 2... house 5

但这种方式即使有 100 所房子,字符串也很短,但会混淆这么多数字。稍后,如果我添加更多房屋,我可能会遇到保存/加载问题。

有没有办法管理这种数据并将其保存在更短的字符串中?

谢谢。

最佳答案

您甚至可以简单地将其保存为表格的每一行的行列表

id people

所以你有一个文件,例如

0 3
1 4
2 5
...

然后你可以通过

解析它
var lines = fileContent.Split('/n');

然后在每一行

var parts = line.Split(' ');
int id = int.TryParse(parts[0]) ? id : -1;
int people = int.TryParse(parts[1]) ? people : -1;

所以在代码中,例如

[Serializable]
public class House
{
public int Id;
public int People;

public House(int id, int people)
{
Id = id;
People = people;
}
}

List<House> Houses = new List<House>();

public void Save()
{
var stringBuilder = new StringBuilder();

foreach(var house in Houses)
{
stringBuilder.Append(house.Id).Append(' ').Append(house.People).Append('/n');
}

// Now use the file IO method of your choice e.g.
File.WriteAllText(filePath, stringBuilder.ToString(), Encoding.UTF8);
}

public void Load()
{
// clear current list
Houses.Clear();

// Use the file IO of choice e.g.
string readText = File.ReadAllText(path);

var lines = readText.Split('/n', StringSplitOptions.RemoveEmptyEntries);

foreach (var line in lines)
{
var parts = line.Split(' ');

// skip wrong formatted line
if(parts.Length != 2) continue;

int id = int.TryParse(parts[0]) ? id : -1;
int people = int.TryParse(parts[1]) ? people : -1;

if(id < 0 || people < 0) continue;

Houses.Add(new House(id, people));
}
}

现在你的房子有了 id 和人数统计。

字符串长度当然取决于您的值,但会类似于(对于 100 个人数为 > 9< 100 的房屋)

house IDs + seperator + people  + /n
10+89*2 + 100 + 100 * 2 + 100

≈ 588 characters | bytes

关于c# - 如何存储和序列化列表以避免长字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58193064/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com