从其他网站获取数据并显示到我们的页面中。
有没有办法从其他网站获取数据并动态显示在我们的jsp页面中。
http://www.dictionary30.com/meaning/Misty 看到这个网址 在那一个街区就像 维基百科上“Misty”的含义和定义
在该块中,他们从维基百科获取数据并显示到dictionary30中。 问题: 他们如何将 wiki 数据获取到他们的网站? 我需要通过从其他站点获取数据来在我的 jsp 页面中显示类似的数据。
Is ther any way to get data from other sites and display in our jsp pages dynamically.
http://www.dictionary30.com/meaning/Misty see this url
in that one block is like
Wikipedia Meaning and Definition on 'Misty'
In that block they are fetching the data from Wikipedia and displaying into dictionaly30.
Question:
How they are fetching wiki data to their site.?
I need to display data like that in my jsp page by fetching from other site.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用
URLConnection
并读取其他站点的数据。或者更好的是,您使用 JSoup 它还会为您解析来自其他站点的特定数据。
对于你的情况
You can use
URLConnection
and read other site's data.or better you use JSoup it will also parse specific data for you from some other site.
for your case
您可以使用
URLConnection
从服务器端的其他站点获取数据,并将该数据提供给 jsp 页面。You can fetch data from other site on your server side using
URLConnection
and provide this data to jsp page.在进行此类操作之前,请确保先获得网站所有者的许可。
大多数人不会善意地接受自己的数据被他人窃取,特别是因为这会花费他们金钱并且不会产生任何(广告)收入。
这也非常危险,因为一旦您从中获取的网站更改为不同的布局,您自己的网站/应用程序就会很快失败。
Do make sure you get permission first from the site owners before doing anything like that.
Most people don't take kindly to their data being leeched by others, especially as it costs them money and doesn't generate any (advertising) income.
It's also very risky in that your own site/application will quickly fail as soon as the site you're leeching from gets changed to a different layout.