List<RowObject> results = new ArrayList<RowObject>();
开发者_开发技巧I tried the above code from Print the jena result set in html(servlet/jsp) post and got the following error:
RowObject cannot be resolved to a type
I also want to do exactly same as given in the post. Is RowObject
a userdefined class ?
RowObject
thing.It's just a Javabean class. The classname doesn't matter, as long as it represents its content. And yes, you need to create it yourself.
精彩评论