Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将 BSON 从 MongoDB 转换为 JSON。
我将文档插入 MongoDB,然后出现以下错误。
这是我得到的
C:\mongodb\bin>bsondump collection.bson> collection.json error: boost::filesystem::file_size:
系统找不到filespecified:"collection.bson"
filespecified:"collection.bson"
请使用collection.bson文件的绝对目录或查看文件是否在C:\mongodb\bin
首先,您必须运行生成 bson 文件的 mongodump。它创建一个转储文件夹,并为每个数据库创建一个其他文件夹。之后你必须运行 bsondump coll.bson > coll.json。