我想将 CSV 行转换为 GeoJSON 对象。我正在使用 CSVReader。因此, nextLine[] 具有所有分离的标记。我想创建存储各种属性的 BasicDBObject。我正在按照以下方式进行操作。
new BasicDBObject("attribute1",nextLine[0]).append("attribute2",nextLine[1])
我想要实现的是在 MongoDB { attribute1: name attribute2: address location:{ type : "Point" , coordinates : [lat, long] } attrribute3: phonenumber } 我如何使用 BasicDBObject 执行此操作?enter code here