Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 935 Bytes

File metadata and controls

27 lines (17 loc) · 935 Bytes

Getting Started with Google Translate API and the Google Cloud Client libraries

Google Translate API provides a simple programmatic interface for translating an arbitrary string into any supported language. These sample Java applications demonstrate how to access the Google Translate API using the Google Cloud Client Library for Java.

Quickstart

Install Maven.

Build your project with:

mvn clean package -DskipTests

You can then run a given ClassName via:

mvn exec:java -Dexec.mainClass=com.example.translate.ClassName \
    -DpropertyName=propertyValue \
	-Dexec.args="any arguments to the app"

Translate a string (using the quickstart sample)

mvn exec:java -Dexec.mainClass=com.example.translate.QuickstartSample