我正在尝试执行
mongoexport --db Mydb --collection Items229900 --out D:/test.json
但它不起作用
答案 0 :(得分:1)
不要在shell上运行此命令,请在命令提示符下输入此脚本,其中包含数据库名称,集合名称和文件名,这些都将替换占位符。
DateFormatSymbols.getInstance().getWeekdays()
它对我有用......
答案 1 :(得分:0)
命令正常,只需更改目标路径即可。将“D:/test.json”更改为“D:\ test.json”。
mongoexport --db Mydb --collection Items229900 --out D:\ test.json
或者只是摆脱“D:\”
mongoexport --db Mydb --collection Items229900 --out test.json
答案 2 :(得分:0)
目前RoboMongo没有执行JSON数据导入/导出的功能。
你在RoboMongo中拥有的外壳是一个' mongo' shell,因此你不能从它运行实用程序(如mongoimport,mongodump等)。您只能运行“mongo”中允许的查询。外壳
您可以在mongodb / bin中的命令提示符下运行此命令:mongoexport example
还有其他工具,例如MongoChef,支持此功能。