google-api-translate-java icon indicating copy to clipboard operation
google-api-translate-java copied to clipboard

Java wrapper for the Google Translate service

Provides a simple, unofficial, Java client API for using Google Translate.

Features:

Small library size - less than 50Kb.

Uses English as an intermediate language to attempt translations between language pairings that are unsupported directly by Google Translate.

The jar is runnable and has a very lightweight GUI to demonstrate translation functionality.

Quickstart:

import com.google.api.translate.Language; import com.google.api.translate.Translate;

public class Main { public static void main(String[] args) throws Exception { // Set the HTTP referrer to your website address. GoogleAPI.setHttpReferrer(/* Enter the URL of your site here */);

// Set the Google Translate API key
// See: http://code.google.com/apis/language/translate/v2/getting_started.html
GoogleAPI.setKey(/* Enter your API key here */);

String translatedText = Translate.DEFAULT.execute("Bonjour le monde", Language.FRENCH, Language.ENGLISH);

System.out.println(translatedText);

} }