1

この freebase.properties ファイルの修正を検索する際に問題が発生しています。私はグーグルAPIとフリーベースサイトを探し、グーグルで修正を試みました。しかし、私と同じ問題を抱えている投稿を除いて、役立つヒントは見つかりませんでした。修正はありませんが、ここに誰かが光を当ててくれることを願っています:)

編集:私が今遭遇している問題は、ファイル「freebase.properties」に関するものです。私はファイルを持っていないので、検索しようとしましたが、結果はありません.Google APIでも提供されていません:/ . 以下のサンプルコードに対して何をするのかわかりません。

以下は、freebase google apis の例からのコードのスニペットです。

public class TopicSample {
      public static Properties properties = new Properties();
      public static void main(String[] args) {
        try {
          properties.load(new FileInputStream("freebase.properties"));
          HttpTransport httpTransport = new NetHttpTransport();
          HttpRequestFactory requestFactory = httpTransport.createRequestFactory();
          JSONParser parser = new JSONParser();
          String topicId = "/en/bob_dylan";
          GenericUrl url = new GenericUrl("https://www.googleapis.com/freebase/v1/topic" + topicId);
          url.put("key", properties.get("API_KEY"));
          HttpRequest request = requestFactory.buildGetRequest(url);
          HttpResponse httpResponse = request.execute();
          JSONObject topic = (JSONObject)parser.parse(httpResponse.parseAsString());
          System.out.println(JsonPath.read(topic,"$.property['/type/object/name'].values[0].value").toString());
        } catch (Exception ex) {
          ex.printStackTrace();
        }
      }
    }
4

0 に答える 0