反序列化由包含bson数据类型的mongodb生成的json

时间:2016-08-11 17:26:33

标签: c# json mongodb serialization bson

我收到了一些JSON数据文件 - 但是,每个对象都包含BSON数据类型;最重要的是,它是一个非常大的tojson转储(数百万条记录)。

我正在尝试反序列化数据,并且正如预期的那样失败。

JSON文件包含:

"someKey" : NumberLong("1234567889"),

那里也有ISODate ......

有没有办法用Json.net来处理这个问题?似乎可能有一些设置让它使用自定义函数而不是特定键的内置解析器?

*已更新,包含非常大(100GB +文件)

的流+文本阅读器的代码
using (StreamReader file = File.OpenText(@"\\largedump.txt"))
            using (JsonTextReader reader = new JsonTextReader(file))
            {
                reader.SupportMultipleContent = true;    
                var serializer = new JsonSerializer();
                while (reader.Read())
                {
                    if (reader.TokenType == JsonToken.StartObject)
                    {
                        Contacts c = serializer.Deserialize<Contacts>(reader);
                        Console.WriteLine(c.orgId);
                    }
                }
            }

1 个答案:

答案 0 :(得分:0)

您可以使用mongo驱动程序bson序列化程序:

使用MongoDB.Bson.Serialization;

  var bjson = @"{
                        '_id' : ObjectId('57ac672e34780e59784d7d2a'),
                        'ActivePick' : null,
                        'EventCodeId' : null,
                        'Frame' : { '$binary' : 'AgY=', '$type' : '00' },
                        'FrameTimeStamp' : ISODate('2016-08-11T11:53:18.541Z'),
                        'ServerUserId' : 0,
                        'ServerUserName' : null,
                        'SesionId' : 0,
                        'TraderId' : null,
                        'TraderName' : null
                    }";

        var bsonDocument = BsonDocument.Parse(bjson);
        var myObj = BsonSerializer.Deserialize<FrameDocument>(bsonDocument);

来源here

修改

我对给定的方法没有任何问题。请参阅github解决方案,因为它正在序列化而没有问题。

            string line;
            using (TextReader file = File.OpenText("ImportDataFromBJsonFile\\a.json"))
            {
                while ((line = file.ReadLine()) != null)
                {
                    var bsonDocument = BsonDocument.Parse(line);
                    var myObj = BsonSerializer.Deserialize<Zxed>(bsonDocument);
                }
            }

sourcesln project