我是Mongo的新手并尝试从集合中导出JSON文件。
> MONGOEXPORT
运行良好并创建了一个JSON文件。
{ "_id" : { "$oid" : "54c8f3fb5e24e03c473243c4" }, "username" : "Aman", "password" : "yesboss" }
{ "_id" : { "$oid" : "54c901c1953b434dabadbabf" }, "username" : "AMAN2" }
现在,JSONLint向我展示了它不是有效JSON的错误。
我需要在我的Java项目中导入它以从中提取值。
答案 0 :(得分:3)
MongoExport导出有效的JSON。您的Java应该将每一行而不是整个文件解析为JSON对象。
如果要将整个导出文件视为JSON对象,请使用选项--jsonArray
--jsonArray
output to a json array rather than one
object per line
mongoexport --db test -c x
connected to: 127.0.0.1
{ "_id" : "54c8f3fb5e24e03c473243c4", "username" : "Aman", "password" : "yesboss" }
{ "_id" : "54c901c1953b434dabadbabf", "username" : "AMAN2" }
exported 2 records
mongoexport --db test -c x --jsonArray
connected to: 127.0.0.1
[{ "_id" : "54c8f3fb5e24e03c473243c4", "username" : "Aman", "password" : "yesboss" },{ "_id" : "54c901c1953b434dabadbabf", "username" : "AMAN2" }]
exported 2 records