在Mongodb中,我有一個包含json文檔的測試集合。我能夠檢索JSON並將其記錄到我的IDE控制檯。現在我想將這個json存儲到我的本地文件系統中的文件(即test.json)中。我試圖創建這樣的代碼,但它不工作。第4行有一些問題,因爲文件無法寫入光標。將json寫入本地文件系統
如何從mongodb獲取對象到文件系統,是否有任何示例代碼與我共享。
DBCursor cursor = collection.find();
FileWriter file = new FileWriter("D:\\test1.json");
while(cursor.hasNext()) {
file.write(cursor.toJSONString(); // this is line 4
}
file.close();
System.out.println("JSON created successfully");
你文件收盤前沖洗.... file.flush(); \t \t file.close() – Naren