दो विकल्प:
आप बनाए गए मानचित्र से "_id" फ़ील्ड को निकाल सकते हैं:
...
resultElementMap.remove("_id");
System.out.println(resultElementMap);
या आप क्वेरी परिणामों को _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);
projections पर दस्तावेज़ देखें सभी विवरणों के लिए।