Hai tùy chọn:
Bạn có thể xóa trường "_id" khỏi bản đồ đã tạo:
...
resultElementMap.remove("_id");
System.out.println(resultElementMap);
Hoặc bạn có thể yêu cầu kết quả truy vấn không bao gồm trường _id:
DBObject allQuery = new BasicDBObject();
DBObject removeIdProjection = new basicDBObject("_id", 0);
DBCollection collection = db.getCollection("volume");
DBCursor cursor = collection.find(allQuery, removeIdProjection);
DBObject resultElement = cursor.next();
Map resultElementMap = resultElement.toMap();
System.out.println(resultElementMap);
Xem tài liệu về các phép chiếu để biết tất cả các chi tiết.