如何使用 Google Translate v2 API Client Library for java 提出翻译请求?

2022-09-03 01:32:52

没有关于如何使用Google Translate API Cliente库用于java的示例。

在此页面中,Google建议搜索其API的示例,但Google Translate API没有一个示例:https://github.com/google/google-api-java-client-samples

由于我没有找到任何Google翻译API的示例,因此我对如何使用其官方java库没有任何线索。

我想提出一个简单的请求,用谷歌制作的官方图书馆翻译文本(例如Hello World从英语翻译成西班牙语):https://developers.google.com/api-client-library/java/apis/translate/v2 但没有文档或示例可供公众使用。

有没有人有关于如何在java中使用Google Translate API客户端库的信息,我已经谷歌了,我根本没有运气。

我已经将所有jar包含在我的项目中,但我不知道我必须使用哪些类,或者哪些对象实例化才能从一种语言翻译成另一种语言。我完全不知道。我只需要一个简单的代码片段,就像其他Google API的示例存储库一样。


答案 1

下面是一个工作示例。

你需要为你的应用生成自己的应用密钥(从这里开始),因为翻译 API 不再公开可用。

有关传递到Translate.Builder()中的选项,请参阅此处

import java.util.Arrays;

import com.google.api.services.translate.Translate;
import com.google.api.services.translate.model.TranslationsListResponse;
import com.google.api.services.translate.model.TranslationsResource;

public class TranslateMe {


    public static void main(String[] args) {

        try {           
            // See comments on 
            //   https://developers.google.com/resources/api-libraries/documentation/translate/v2/java/latest/
            // on options to set
            Translate t = new Translate.Builder(
                    com.google.api.client.googleapis.javanet.GoogleNetHttpTransport.newTrustedTransport()
                    , com.google.api.client.json.gson.GsonFactory.getDefaultInstance(), null)                                   
                    //Need to update this to your App-Name
                    .setApplicationName("Stackoverflow-Example")                    
                    .build();           
            Translate.Translations.List list = t.new Translations().list(
                    Arrays.asList(
                            //Pass in list of strings to be translated
                            "Hello World",
                            "How to use Google Translate from Java"), 
                        //Target language   
                        "ES");  
            //Set your API-Key from https://console.developers.google.com/
            list.setKey("you-need-your-own-api-key");
            TranslationsListResponse response = list.execute();
            for(TranslationsResource tr : response.getTranslations()) {
                System.out.println(tr.getTranslatedText());
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

答案 2

参考:翻译 API 客户端库

模板:

// Imports the Google Cloud client library
import com.google.cloud.translate.Translate;
import com.google.cloud.translate.Translate.TranslateOption;
import com.google.cloud.translate.TranslateOptions;
import com.google.cloud.translate.Translation;

public class QuickstartSample {
  public static void main(String... args) throws Exception {
    // Instantiates a client
    Translate translate = TranslateOptions.builder().apiKey("YOUR_API_KEY").build().service();

    // The text to translate
    String text = "Hello, world!";

    // Translates some text into Russian
    Translation translation = translate.translate(
      text,
      TranslateOption.sourceLanguage("en"),
      TranslateOption.targetLanguage("ru")
    );

    System.out.printf("Text: %s%n", text);
    System.out.printf("Translation: %s%n", translation.translatedText());
  }
}


专家:

<dependency>
    <groupId>com.google.cloud</groupId>
    <artifactId>google-cloud-translate</artifactId>
    <version>0.4.0</version>
</dependency>

推荐