page_type name description urlFragment languages products
sample
Microsoft Translator Java samples (v3)
This repository includes Java code samples for Microsoft Translator.
translator-java-v3
java
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

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.kts with 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.

Resources