首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > 必应API托管在Windows Azure搜索java实现

必应API托管在Windows Azure搜索java实现

资 源 简 介

Java implementation of Bing Search API hosted in Windows Azure This is in late beta. Most of it works. Not everything that does work works well. Let me know if you find problems. Dependent on HTTPCore and HTTPClient out of Apache Commons. For more info, see Using azure-bing-search-java in your java project. Example use: ``` <% AzureSearchNewsQuery aq = new AzureSearchNewsQuery(); aq.setAppid(AZURE_APPID); aq.setQuery("Oklahoma Sooners"); aq.doQuery(); AzureSearchResultSet ars = aq.getQueryResult(); for (AzureSearchNewsResult anr : ars){ %> <%=anr.getTitle()%> (<%=anr.getSource() %>) <%=anr.getDate() %> <%=anr.getDescription() %> <%=anr.getUrl() %>
VIP VIP
0.174967s