1
zj
2025-04-27 5ce072de78ae263b52dc0e2be5c7391b23c093cf
src/main/java/com/nq/utils/translate/GoogleTranslateUtil.java
@@ -15,7 +15,6 @@
    public String translate(String langFrom, String langTo,
                            String word) throws Exception {
        //不为空则设置代理
//        String proxyHost = PropertiesUtil.getProperty("https.proxyHost");
//        String proxyPort = PropertiesUtil.getProperty("https.proxyPort");
@@ -74,7 +73,7 @@
     * 谷歌翻译 传string 反string
     */
    public String translate(String content,String lang) throws Exception {
    public String translate(String content,String lang)   {
        StringBuilder result = new StringBuilder();
        if (content.length() > 1000) {
            int size = content.length() /1000 ;