我花了两天的时间在代码示例等方面,试图将一个非常大的JSON文件读入c#中的数组,这样我就可以稍后将其分割成一个2d数组进行处理。
我遇到的问题是,我找不到任何做我想做的事情的人的例子。这意味着我只是稍微编辑了一下代码,抱着最好的希望。
我已经设法得到一些工作,将:
这是用下面的代码完成的,但是在数组中输入几行后程序就崩溃了。这可能与文件大小有关。
// If the file extension was a jave file the following
// load method will be use else it will move on to the
// next else if statement
if (fileExtension == ".json")
{
int count = 0;
int count2 = 0;
int inOrOut = 0;
int nRecords=1;
JsonTextReader reader = new JsonTextReader(new StreamReader(txtLoaction.Text));
string[] rawData = new string[5];
while (reader.Read())
{
if (reader.Value != null)
if (inOrOut == 1)
{
if (count == 6)
{
nRecords++;
Array.Resize(ref rawData, nRecords);
//textBox1.Text += "\r\n";
count = 0;
}
rawData[count2] += reader.Value + ","; //+"\r\n"
inOrOut = 0;
count++;
if (count2 == 500)
{
MessageBox.Show(rawData[499]);
}
}
else
{
inOrOut = 1;
}
}
}
我正在使用的JSON片段是:
[
{ "millis": "1000",
"stamp": "1273010254",
"datetime": "2010/5/4 21:57:34",
"light": "333",
"temp": "78.32",
"vcc": "3.54" },
]
我需要这个JSON的值。例如,我需要“3.54”,但我不希望它打印“vcc”。
我希望有人能告诉我如何读取JSON文件,只提取我需要的数据,并把它放入一个数组或我可以用来以后放入数组的东西。