I'm using IndexTank with the Java client, but I can't seem to access the results:
SearchResults results = index.search(Query.forString(keywords));
for (Map<String, Object> document : results.results) {
System.out.println("doc id: " + document.get("docid"));
The last line fails with: Type mismatch: cannot convert from Object to String
Does anyone know why I get this error? Thanks.
String.valueOf(document.get("docid")). That is just a guess, however, asString + Objectshould callString.valueOf(Object)automatically. Anyway, could you please post an exception and it's stack trace? – Frozen Spider Apr 23 '11 at 6:22