Home > Java > javaTutorial > body text

Utilize the Java Baidu Translation API to achieve high-quality and accurate translation between multiple languages

PHPz
Release: 2023-08-04 13:27:32
Original
1022 people have browsed it

Use Java Baidu Translation API to achieve high-quality and accurate translation between multiple languages

With the continuous development of globalization, communication between various languages ​​is becoming more and more frequent. In this multilingual era, translation technology is not only important, but also attracts more and more attention from users. In order to meet users' needs for multi-language translation, Baidu provides a powerful and accurate translation API.

Baidu Translation API is a very useful function in Baidu open platform, which can help developers translate one language into other languages. By calling Baidu Translation API, we can achieve high-quality and accurate translation between multiple languages.

So, how to use Java to call Baidu Translation API to achieve translation between multiple languages? Next, I will introduce you to the specific implementation steps and attach Java code examples.

First, we need to apply for an account on Baidu Open Platform, create an application, and obtain our own API Key and Secret Key. The API Key is used to identify the developer's identity, while the Secret Key is used to authenticate the signing key.

Then, we need to import Java’s HTTP request toolkit, such as Apache HttpClient. This toolkit can help us send HTTP requests and get the returned results.

Next, we need to write Java code to make the call. First, we need to construct a URL for an HTTP request and pass the text to be translated, the source language, and the target language as parameters to the URL. We then need to URL encode the URL and add the API Key and Salt as parameters to the URL. Finally, we need to use the Secret Key to sign the URL to ensure the security of the request.

The following is a simple sample code that demonstrates how to use Java to call Baidu Translation API for translation:

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.StringEntity;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;

import java.security.MessageDigest;

public class BaiduTranslate {
    // API Key
    private static final String API_KEY = "Your API Key";
    // Secret Key
    private static final String SECRET_KEY = "Your Secret Key";

    public static void main(String[] args) throws Exception {
        // 待翻译的文本
        String query = "Hello, world!";
        // 源语言
        String from = "en";
        // 目标语言
        String to = "zh";

        // 构建URL
        String url = "https://fanyi-api.baidu.com/api/trans/vip/translate";
        String salt = String.valueOf(System.currentTimeMillis());
        String sign = md5(API_KEY + query + salt + SECRET_KEY);
        url += "?q=" + query + "&from=" + from + "&to=" + to + "&appid=" + API_KEY + "&salt=" + salt + "&sign=" + sign;

        // 发送HTTP请求
        HttpClient client = HttpClients.createDefault();
        HttpPost post = new HttpPost(url);
        HttpResponse response = client.execute(post);

        // 处理返回结果
        HttpEntity entity = response.getEntity();
        String result = EntityUtils.toString(entity);
        System.out.println(result);
    }

    // 对字符串进行MD5哈希
    private static String md5(String s) {
        try {
            MessageDigest md = MessageDigest.getInstance("MD5");
            byte[] bytes = md.digest(s.getBytes("UTF-8"));
            StringBuilder hex = new StringBuilder();
            for (byte b : bytes) {
                hex.append(String.format("%02x", b & 0xff));
            }
            return hex.toString();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return "";
    }
}
Copy after login

Through the above code, we can easily call Baidu Translation API to achieve translation between multiple languages High quality and accurate translation. You only need to provide the text to be translated, the source language and the target language to get the translation results.

To sum up, it is not complicated to use the Java Baidu Translation API to achieve high-quality and accurate translation between multiple languages. You only need to apply for API Key and Secret Key, import the HTTP request toolkit and write the corresponding Java code to easily implement multi-language translation functions. I hope this article can be helpful to everyone, and I also hope that everyone can give full play to this function and improve their communication and cooperation capabilities in the era of globalization.

The above is the detailed content of Utilize the Java Baidu Translation API to achieve high-quality and accurate translation between multiple languages. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template