Text-Translation-API-V3-Java
Text-Translation-API-V3-Java copied to clipboard
page_type: sample name: Microsoft Translator Java samples (v3) description: This repository includes Java code samples for Microsoft Translator. urlFragment: translator-java-v3 languages:
- java products:
- azure
- azure-cognitive-services
- azure-translator
Translator API V3 - Java Samples
This repository includes Java samples for Microsoft Translator. Each sample corresponds to a Quickstart activity on doc.microsoft.com, including:
- Translating text
- Transliterating text
- Identifying the language of source text
- Getting alternate translations
- Getting a complete list of supported languages
- Determining sentence length
Get started with the Translator quickstart.
Prerequisites
- JDK 7 or later
- Gradle
- An Azure subscription - Sign-up for a free account!
- A Translator resource - Create a Translator resource
Code samples
This repository includes a sample for each of the methods made available by the Microsoft Translator API v3. To use each of the samples, follow the instructions below.
Important note: The directory for each sample includes a Gradle build configuration.
- Create a working directory for your project. For example:
mkdir sample-project. - Initialize your project with Gradle:
gradle init --type basic. When prompted to choose a DSL, select Kotlin. - Update
build.gradle.ktswith the configuration provided in the sample directory. - Create a Java file and copy in the code from the provided sample. Don't forget to add your subscription key.
- Run the sample:
gradle run.