# google-api-translate-java **Repository Path**: chen-qingsong199864/google-api-translate-java ## Basic Information - **Project Name**: google-api-translate-java - **Description**: No description available - **Primary Language**: Java - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-11-24 - **Last Updated**: 2023-11-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 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); } }