Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
迅速でうまくいけば簡単な質問。
DBObject res = collection.findOne(new BasicDBObject("_id",id)); // some_array is just an array of strings Arr = res.get("some_array");
Arrはどのタイプである必要がありますか?String[]?ArrayList?
String[]
ArrayList
Java ドライバーは、ドキュメント内の配列を として返します。このList例では、Arr をList<String>.
List
List<String>