Dump Mongo Collection into JSON format

后端 未结 5 889
小蘑菇
小蘑菇 2020-12-04 07:10

Is there any way to dump mongo collection into json format? Either on the shell or using java driver.I am looking for the one with best performance.

5条回答
  •  孤街浪徒
    2020-12-04 07:51

    Here's mine command for reference:

    mongoexport --db AppDB --collection files --pretty --out output.json
    

    On Windows 7 (MongoDB 3.4), one has to move the cmd to the place where mongod.exe and mongo.exe file resides => C:\MongoDB\Server\3.4\bin else it won't work saying it does not recongnize mongoexport command.

提交回复
热议问题