Home Java javaTutorial Practical case of mutual translation between Chinese and Indonesian using Java Baidu Translation API

Practical case of mutual translation between Chinese and Indonesian using Java Baidu Translation API

Aug 05, 2023 pm 03:45 PM
java api translate

A practical case of Java Baidu Translation API realizing mutual translation between Chinese and Indonesian

Overview
With the development of globalization and the increase of transnational exchanges, the demand for language translation is also increasing. Baidu Translation API is a powerful tool that can help us translate between different languages ​​quickly and easily. This article will introduce how to use Java programming language to achieve mutual translation between Chinese and Indonesian through Baidu Translation API.

Implementation steps

  1. Register Baidu developer account
    First, we need to register a Baidu developer account and apply to obtain the relevant key of the translation API so that it can be called in Java code API. On the Baidu Developer Platform, select Translation API and register an account to obtain the APP ID and key.
  2. Import dependent libraries
    In Java code, we need to use related classes such as HttpURLConnection and BufferedReader to interact with the API. Therefore, relevant dependent libraries need to be imported into the project. Add the following dependencies in the pom.xml file:
<dependencies>
    <dependency>
        <groupId>org.apache.httpcomponents</groupId>
        <artifactId>httpclient</artifactId>
        <version>4.5.13</version>
    </dependency>
</dependencies>
Copy after login
  1. Writing API requests
    In the Java code, we need to construct a URL to send the HTTP request and add the parameters and password The key is passed to the API. We can use the URLConnection class to achieve:
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLEncoder;

public class TranslationAPI {
    public static void main(String[] args) {
        String sourceText = "中文文本"; // 需要翻译的中文文本
        String appId = "your_app_id"; // 替换为你的APP ID
        String appKey = "your_app_key"; // 替换为你的APP Key

        try {
            String encodedText = URLEncoder.encode(sourceText, "UTF-8");
            String urlStr = "http://api.fanyi.baidu.com/api/trans/vip/translate?q=" + encodedText
                    + "&from=zh&to=id&appid=" + appId + "&salt=1435660288&sign=" + generateSign(sourceText, appId, appKey);

            URL url = new URL(urlStr);
            HttpURLConnection connection = (HttpURLConnection) url.openConnection();
            connection.setRequestMethod("GET");

            BufferedReader reader = new BufferedReader(new InputStreamReader(connection.getInputStream()));

            StringBuilder response = new StringBuilder();
            String line;
            while ((line = reader.readLine()) != null) {
                response.append(line);
            }
            reader.close();

            System.out.println(response.toString());

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static String generateSign(String sourceText, String appId, String appKey) {
        String sign = appId + sourceText + "1435660288" + appKey;
        MD5 md5 = new MD5();
        return md5.getMD5(sign);
    }
}
Copy after login
  1. Parse API response
    API response is a JSON string that contains translation results and other related information. We can use the JSON library to parse this string and extract the translation results we need:
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;

public class TranslationAPI {
    // ...

    private static String parseTranslationResult(String response) {
        JSONObject jsonResult = JSON.parseObject(response);
        JSONArray translationArray = jsonResult.getJSONArray("trans_result");
        StringBuilder translationResult = new StringBuilder();

        for (int i = 0; i < translationArray.size(); i++) {
            JSONObject translationItem = translationArray.getJSONObject(i);
            String translatedText = translationItem.getString("dst");
            translationResult.append(translatedText).append(" ");
        }

        return translationResult.toString();
    }
}
Copy after login
  1. Run the code
    Using the Java code written in the above steps, we will Can realize mutual translation between Chinese and Indonesian. Call the translation API in the main method and output the result:
public class TranslationAPI {
    // ...

    public static void main(String[] args) {
        String sourceText = "中文文本"; // 替换为你的中文文本

        // ...

        String translationResult = parseTranslationResult(response.toString());
        System.out.println("翻译结果:" + translationResult);
    }
}
Copy after login

The above is a practical case of using Java to realize mutual translation between Chinese and Indonesian through Baidu Translation API. Through this case, we can learn how to call the API to send requests, parse API responses and obtain translation results. I hope this article will help you learn Java and implement multi-language translation!

The above is the detailed content of Practical case of mutual translation between Chinese and Indonesian using Java Baidu Translation API. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Square Root in Java Square Root in Java Aug 30, 2024 pm 04:26 PM

Guide to Square Root in Java. Here we discuss how Square Root works in Java with example and its code implementation respectively.

Perfect Number in Java Perfect Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Perfect Number in Java. Here we discuss the Definition, How to check Perfect number in Java?, examples with code implementation.

Random Number Generator in Java Random Number Generator in Java Aug 30, 2024 pm 04:27 PM

Guide to Random Number Generator in Java. Here we discuss Functions in Java with examples and two different Generators with ther examples.

Armstrong Number in Java Armstrong Number in Java Aug 30, 2024 pm 04:26 PM

Guide to the Armstrong Number in Java. Here we discuss an introduction to Armstrong's number in java along with some of the code.

Weka in Java Weka in Java Aug 30, 2024 pm 04:28 PM

Guide to Weka in Java. Here we discuss the Introduction, how to use weka java, the type of platform, and advantages with examples.

Smith Number in Java Smith Number in Java Aug 30, 2024 pm 04:28 PM

Guide to Smith Number in Java. Here we discuss the Definition, How to check smith number in Java? example with code implementation.

Java Spring Interview Questions Java Spring Interview Questions Aug 30, 2024 pm 04:29 PM

In this article, we have kept the most asked Java Spring Interview Questions with their detailed answers. So that you can crack the interview.

Break or return from Java 8 stream forEach? Break or return from Java 8 stream forEach? Feb 07, 2025 pm 12:09 PM

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

See all articles