java - Jena Result set to String -


i'm using jena query dbpedia , return resultset, how can make resultset returned java string? don't want in json format.

take @ apache jena resultsetformatter documentation - "astext" method may you're looking for:

resultset results = ... string resultsasstring = resultsetformatter.astext(results); 

Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -