我正在尝试使用Java将.dat文件中的数据导入MongoDB。
我当前的解决方案是使用扫描仪读取文件,然后遍历文件,然后将每一行数据插入mongodb。但这看起来不像是“智能”方法。
.dat文件就是这样
1::Toy Story (1995)::Adventure|Animation|Children|Comedy|Fantasy
2::Jumanji (1995)::Adventure|Children|Fantasy
3::Grumpier Old Men (1995)::Comedy|Romance
4::Waiting to Exhale (1995)::Comedy|Drama|Romance
5::Father of the Bride Part II (1995)::Comedy
6::Heat (1995)::Action|Crime|Thriller
7::Sabrina (1995)::Comedy|Romance
文件没有标题,标题是
MovieID::Title::Genres
执行此操作的正确方法是什么?导入数据时,Java中是否有类似于mongoimport command
的方法?