需要这个特定的 jar 文件
我正在尝试通过我的 java 应用程序连接到 bing api 并以编程方式查询 bing。我在网上找到了这个页面,它为我提供了示例代码,让我了解如何进行整个过程。但我无法编译和运行该代码,因为它有两个导入,即
com.microsoft.schemas.livesearch._2008._03.search.LiveSearchServiceStub;
com.microsoft.schemas.livesearch._2008._03.search.LiveSearchServiceStub.*;
任何人都可以给我一个链接来获取这些 jar 文件。
我已经用谷歌搜索过了,检查了sourceforge 等等。因此,如果有人知道另一个网站肯定有这个 jar 文件,或者如果您有这两个 jar 文件的副本,请告诉我如何获取它们。这将是一个很大的帮助。
谢谢。
I am trying to connect to the bing api through my java application and query bing programmatically. And I found this page online that gives me sample code to just get a feel of how to go about the entire process. But I am unable to compile and run that code because it has two imports namely
com.microsoft.schemas.livesearch._2008._03.search.LiveSearchServiceStub;
com.microsoft.schemas.livesearch._2008._03.search.LiveSearchServiceStub.*;
Could anybody give me a link to get these jar files.
I already googled it, checked sourceforge and everything. So If anyone knows of another site that definitely has this jar file, or if you have a copy of these two jar files please do let me know how I can obtain them. It would be a great help.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从这些类的名称来看,它们只是存根类,这意味着它们只是类的虚拟版本,没有任何实际功能。您也许可以轻松创建自己的。
By the names of those classes they are just Stub classes, meaning they are just dummy-versions of the classes without any real functionality. You can probably just create your own easily.
Bing 通过 Web 服务提供搜索服务。您可以通过任何提供 Web 服务界面(或仅 Web 访问)的语言来访问它们。
Bing API
Bing provides it search services via Web Services. You can access them from any language that provides a web services interface (or just web access).
Bing API