Java使用百度翻译接口开发app

到网站:百度翻译开放平台下载Java版本的demo

使用demo中的三个文件,main不用

默认返回的result内容是这样的:

bash 复制代码
 {"from":"en","to":"zh","trans_result":[{"src":"Sure! Here's a short paragraph in English: ","dst":"\u5f53\u7136\u8fd9\u91cc\u6709\u4e00\u5c0f\u6bb5\u82f1\u8bed\uff1a"},{"src":"\"The sun was setting behind the distant hills, casting a warm golden glow over the tranquil countryside. Birds chirped softly in the trees, and a gentle breeze rustled through the leaves. As evening descended, the sky turned shades of pink and orange, painting a breathtaking canvas above. It was a moment of serene beauty, a peaceful pause in the hustle and bustle of life.\"","dst":"\u201c\u592a\u9633\u843d\u5728\u8fdc\u5904\u7684\u5c71\u4e18\u540e\u9762\uff0c\u7ed9\u5b81\u9759\u7684\u4e61\u6751\u6295\u4e0b\u4e86\u6e29\u6696\u7684\u91d1\u8272\u5149\u8292\u3002\u9e1f\u513f\u5728\u6811\u4e0a\u8f7b\u8f7b\u5730\u9e23\u53eb\uff0c\u5fae\u98ce\u5728\u6811\u53f6\u4e2d\u6c99\u6c99\u4f5c\u54cd\u3002\u591c\u5e55\u964d\u4e34\uff0c\u5929\u7a7a\u53d8\u6210\u4e86\u7c89\u7ea2\u8272\u548c\u6a59\u8272\uff0c\u5728\u4e0a\u9762\u753b\u51fa\u4e86\u4e00\u5e45\u4ee4\u4eba\u60ca\u53f9\u7684\u753b\u5e03\u3002\u8fd9\u662f\u4e00\u4e2a\u5b81\u9759\u7684\u7f8e\u4e3d\u65f6\u523b\uff0c\u662f\u751f\u6d3b\u55a7\u56a3\u4e2d\u7684\u4e00\u4e2a\u5e73\u9759\u7684\u505c\u987f\u3002\u201d"}]}

使用下面的代码,会自动将结果提取出来:

java 复制代码
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class baidutranslation {

    private static final String APP_ID = "";
    private static final String SECURITY_KEY = "";

    public static void baiduTranslation(String ocrText, String src, String tgt, TranslationListener listener) {
        // 创建一个 AsyncTask 来执行网络请求
        TranslationTask task = new TranslationTask(ocrText, src, tgt, listener);
        task.execute();
    }

    private static class TranslationTask extends AsyncTask<Void, Void, String> {
        private String ocrText;
        private String src;
        private String tgt;
        private TranslationListener listener;

        public TranslationTask(String ocrText, String src, String tgt, TranslationListener listener) {
            this.ocrText = ocrText;
            this.src = src;
            this.tgt = tgt;
            this.listener = listener;
        }

        @Override
        protected String doInBackground(Void... voids) {
            // 在后台线程中执行网络请求
            TransApi api = new TransApi(APP_ID, SECURITY_KEY);
            return api.getTransResult(ocrText, src, tgt);
        }

        @Override
        protected void onPostExecute(String result) {
            // 在 UI 线程中处理网络请求的结果,并将提取出来的翻译文本传递给监听器
            if (listener != null) {
                try {
                    JSONObject jsonResult = new JSONObject(result);
                    JSONArray transResult = jsonResult.getJSONArray("trans_result");
                    StringBuilder translatedText = new StringBuilder();
                    for (int i = 0; i < transResult.length(); i++) {
                        JSONObject item = transResult.getJSONObject(i);
                        translatedText.append(item.getString("dst"));
                    }
                    listener.onTranslationResult(translatedText.toString());
                } catch (JSONException e) {
                    e.printStackTrace();
                }
            }
        }
    }

    public interface TranslationListener {
        void onTranslationResult(String result);
    }
}

在其他函数中调用:

java 复制代码
// 执行翻译操作
        baidutranslation.baiduTranslation(ocrText, src, "zh", new baidutranslation.TranslationListener() {
            @Override
            public void onTranslationResult(String result) {
                // 处理翻译结果
                textView.setText(ocrText+"\n\n  翻译结果: \n\n " + result);
            }
        });
相关推荐
维吉斯蔡3 小时前
【VS Code / Cursor】文件夹右键快捷打开与文件类型自动关联
开发语言·程序人生·学习方法
蓝斯4973 小时前
[原创]《C#高级GDI+实战:从零开发一个流程图》第章:增加贝塞尔曲线,上、下、左、右连接点
java·c#·流程图
前端工作日常3 小时前
我学习到的Java 的 Service 分层:itf 和 impl 到底是什么?
java·后端
都叫我大帅哥4 小时前
Spring @Transactional 注解完全指南
java·spring
Java成神之路-4 小时前
G1 垃圾回收器 :SATB + TAMS核心机制深度解析
java·jvm
前端工作日常5 小时前
我学习到的JIT即时编译与机器码缓存失效
java·后端
带刺的坐椅5 小时前
Solon 的 10 种 HTTP 服务器:改一行依赖,换一个引擎
java·solon·jetty·undertow·mcp-server·htttp
luj_17685 小时前
星火科技助力边远地区防病攻坚
c语言·开发语言·c++·经验分享·算法
always_TT5 小时前
【Python 日志记录:logging 模块入门】
开发语言·python·php
xcLeigh5 小时前
Go入门:变量声明的五种方式详解
java·开发语言·golang