unity中CSV的读取
Posted carsonche
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了unity中CSV的读取相关的知识,希望对你有一定的参考价值。
unity中读取数据的格式有很多种,现在为大家介绍的是读取CSV,
static CSV csv;
public List<string[]> m_ArratData;
public static CSV Getinstance()
{
if (csv == null)
{
csv = new CSV();
}
return csv;
}
public string getstring(int row, int col)
{
return m_ArratData[row][col];
}
public int getInt(int row, int col)
{
return int.Parse(m_ArratData[row][col]);
}
private CSV() {
m_ArratData = new List<string[]>();
}
public void loadFile(string path,string fileName)
{
m_ArratData.Clear();
StreamReader sr = null;
try
{
sr = File.OpenText(path + "//" + fileName);
Debug.Log("file is finded!");
}
catch
{
Debug.Log("file dont not exist");
}
string line;
while ((line = sr.ReadLine()) != null)
{
m_ArratData.Add(line.Split(‘,‘));
}
sr.Close();
sr.Dispose();
}
}
以上是关于unity中CSV的读取的主要内容,如果未能解决你的问题,请参考以下文章