1. 程式人生 > >如何將xls檔案匯入到mongoDB中?

如何將xls檔案匯入到mongoDB中?

1、將xls檔案另存為csv格式的文字檔案,注意檔案中如果有中文最好選擇UTF-8檔案格式(若不這樣做匯入資料時會出錯的);

2、在Linux的shell中通過執行命令:mongoimport -d mydb -c testData --type csv --file xxx.csv --headerline --upsert

3、等待完成,其間有完成百分比和完成匯入物件(記錄)個數。

詳見:http://docs.mongodb.org/manual/reference/program/mongoexport/