jena 结果为 Html(servlet/jsp)
List<RowObject> results = new ArrayList<RowObject>();
我尝试了 在 html 中打印 jena 结果集(servlet/ jsp) 帖子 并得到以下错误:
RowObject 无法解析为类型
我也想做的与帖子中给出的完全相同的类型。 RowObject
是用户定义的类吗?
如果是,那么我该如何构建它?我对这个 RowObject
事情感到困惑。
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 ?
If yes,then how to I build it? I am confused regarding this RowObject
thing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它只是一个 Javabean 类。类名并不重要,只要它代表其内容即可。是的,您需要自己创建它。
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.