Quick and hopefully easy question.
DBObject res = collection.findOne(new BasicDBObject("_id",id));
// some_array is just an array of strings
Arr = res.get("some_array");
What type does Arr need to be? String[]? ArrayList?
The Java driver will return arrays within the document as a List - for your example, you would want Arr to be a List<String>.