从 wiki 到 ourjsp 页面显示单词的含义
我如何阅读 wiki 中单词的含义和句子,并且必须动态显示在我的 jsp 页面中..?
How can i read the meaning's and sentences for a words in wiki and has to display in my jsp page dynamically..?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,您必须有一个从维基百科读取数据的接口。
您可以使用以下免费 API 之一:
<代码>
http://code.google.com/p/jwpl/
http://dbpedia.org/
一旦建立了服务器接口,您就可以调用服务器方法来通过
AJAX
或其他在 JSP 上鼠标悬停
上显示数据的方式来获取数据页。你也可以通过
AJAX
直接从JSP页面调用维基百科,但我建议使用你自己的服务器方法来获取数据,这样将来如果你必须应用一些过滤器来审查内容,那么会更容易来实施。First of all you have to have an interface to read data from Wikipedia.
You can use one of the following free APIs:
http://code.google.com/p/jwpl/
http://dbpedia.org/
Once your server interface is established then you can call your server methods to fetch the data through
AJAX
or some other way of disaplying data onmouse over
from the JSP page.You can also directly call Wikipedia from JSP page by
AJAX
but I would suggest to use your own server method to fetch the data so in future if you have to apply some filter to censor the content then it will easier to implement.