Java用のGoogle Translate APIクライアントライブラリを使用する方法の例はありません。
このページでは、GoogleがAPIの例を検索することを推奨していますが、Google Translate APIの単一の例はありません: https://github.com/google/google-api-Java-client-samples
Google Translate APIの例が見つからなかったので、公式のJavaライブラリを使用する方法についての手がかりはありません。
Googleが作成した公式ライブラリを使用してテキスト(たとえば、Hello Worldを英語からスペイン語に翻訳する)の簡単なリクエストを作成したい: https://developers.google.com/api-client-library/Java/apis/translate/v2 ですが、公開されているドキュメントや例はありません。
JavaでGoogle Translate APIクライアントライブラリを使用する方法についての情報はありますか。
私はすでにプロジェクトにすべてのjarファイルを含めましたが、使用する必要があるクラスや、ある言語から別の言語に翻訳するためにインスタンス化するオブジェクトがわかりません。私には全く手がかりがありません。他のGoogle APIのサンプルリポジトリのように、単純なコードの一部のみが必要です。
これが実際の例です。
翻訳APIは公開されなくなったため、アプリ用に独自のApp-Keyを生成する必要があります(start here )。
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();
}
}
}
テンプレート:
// 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>