1

我使用这个 bing api 的示例代码:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

import org.apache.commons.codec.binary.Base64;
import org.jsoup.Jsoup;
public class bingSearch {
    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        //--------------------------------------Bing search------------------------------
        String searchText = "swim";
        searchText = searchText.replaceAll(" ", "%20");
        String accountKey="Your-AccountKEY";
        byte[] accountKeyBytes = Base64.encodeBase64((accountKey + ":" + accountKey).getBytes());
        String accountKeyEnc = new String(accountKeyBytes);
        URL url;
        try {
            url = new URL(  
                    "https://api.datamarket.azure.com/Data.ashx/Bing/Search/v1/Web?Query=%27" + searchText + "%27&$top=50&$format=Atom");
        HttpURLConnection conn = (HttpURLConnection) url.openConnection();
        conn.setRequestMethod("GET");
        conn.setRequestProperty("Authorization", "Basic " + accountKeyEnc);

     //  conn.setRequestProperty("Accept", "application/json");

        BufferedReader br = new BufferedReader(new InputStreamReader(
                (conn.getInputStream())));
        StringBuilder sb = new StringBuilder();
        String output;
        System.out.println("Output from Server .... \n");
        char[] buffer = new char[4096];
        while ((output = br.readLine()) != null) {
            sb.append(output);

              //  text.append(link + "\n\n\n");//Will print the google search links
            //}     
        } 

        conn.disconnect(); 

        int find = sb.indexOf("<d:Description");

        int total = find + 1000;

        System.out.println("Find index: " + find);
        System.out.println("Total index: " + total);
        sb.getChars(find+35, total, buffer, 0);

        String str = new String(buffer);

        int find2 = str.indexOf("</d:Description>");

        int total2 = find2 + 400;
        System.out.println("Find index: " + find);
        System.out.println("Total index: " + total);
        char[] buffer2 = new char[1024];

        str.getChars(0, find2, buffer2 , 0);
        String str2 = new String(buffer2);
        str2 = Jsoup.parse(str2).text();    
        System.out.println(str2);

        } catch (MalformedURLException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }


    }        
}

输出是:

来自服务器的输出 ....

Find index: 1014
Total index: 2014
Find index: 1014
Total index: 2014
A computer is a general purpose device that can be programmed to carry out a finite set of arithmetic or logical operations. Since a sequence of operations can be ...

它只显示一个结果,但我需要多个结果。可以使用此代码执行此操作吗?或者这个代码有其他替代品吗?谢谢

4

1 回答 1

1

在您对 Bing 的调用中,您将结果请求为Atom提要,这就是您要返回的结果(该特定查询长 38785 个字符),您确实应该将其视为 Atom 提要并以更合适的方式对其进行解析.

但是,您在代码中只得到一个结果的原因是您似乎从未遍历sb包含提要的字符串。如果您真的想以这种方式解析提要,则需要在conn.disconnect()循环之后移至代码,并使用类似sb.indexOf("<d:Description", int fromIndex)遍历字符串的方法,每次找到新匹配项时都会增加 fromIndex。

但是你真的应该像对待 xml-feed 一样对待来自 Bing 的响应,并使用一些 xml-library 来解析它,例如Rome

于 2013-06-22T14:03:14.857 回答