91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android需要翻譯的strings有哪些

發布時間:2021-10-09 11:31:49 來源:億速云 閱讀:123 作者:iii 欄目:開發技術

本篇內容主要講解“Android需要翻譯的strings有哪些”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“Android需要翻譯的strings有哪些”吧!

目錄
  • 1、問題描述

  • 2、大概思路

  • 3、代碼解析

1、問題描述

項目需要做俄語國際化,歷史代碼里有的字段有俄語翻譯、有的沒有,需要把沒翻譯的中文整理出來翻譯成俄文。 (因為項目組件化module太多了所以覺得一個一個整理很麻煩,如果module不多的話就可以直接手動處理不用整下面這些了)

2、大概思路

  1. 列出所有res目錄,根據是否包含values-ru分成兩組(半自動)

  2. 在“不包含”分組里把需要翻譯的中文文件復制出來(半自動)

  3. 在“包含”組里把需要補充翻譯的字段復制出來(純手動)

  4. 把復制出來需要翻譯的xml文件轉換成excel用于翻譯(自動)

  5. 把翻譯好的文件通過excel的公式轉換成xml,根據之前記錄的res目錄放到項目里(半自動)

3、代碼解析

列出所有string.xml文件路徑

public static void listResPath(String src) throws Exception {
    File path2 = new File(src);
    if (!path2.exists()) {
        return;
    }

    File[] items = path2.listFiles();
    if (items == null) return;

    for (File item : items) {
        if (item.isFile()) {
            if (!item.getName().equals("strings.xml")) continue;
            System.out.println(item.getPath());
        } else {
            listResPath(item.getPath());
        }
    }
}

手工找出不包含ru的模塊,然后在項目里看一下應該翻譯哪個文件,把需要翻譯的文件路徑放到一個txt里,例如:

D:\work\aaa\src\main\res\values-zh-rCN\strings.xml
D:\work\bbb\src\main\res\values-zh-rCN\strings.xml
D:\work\ccc\src\main\res\values\strings.xml
D:\work\ddd\src\main\res\values-zh\strings.xml

復制這些文件到translate文件夾

private static List<String> needCopyFiles = new ArrayList<>();

private static void getNeedCopyFiles() {
    try {
        FileInputStream inputStream = new FileInputStream("D:\xxx\needCopy.txt");
        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));
        String str;
        while ((str = bufferedReader.readLine()) != null) {
            if (!str.isEmpty()) {
                needCopyFiles.add(str);
            }
        }
        bufferedReader.close();
    } catch (IOException e) {
        e.printStackTrace();
    }
}

public static void listResPath(String src) throws Exception {
    File path2 = new File(src);
    File path3 = new File("D:\xxx\translate");

    if (!path2.exists()) {
        return;
    }

    File[] items = path2.listFiles();
    if (items == null) return;

    for (File item : items) {
        if (item.isFile()) {
            if (!item.getName().equals("strings.xml")) continue;
            if (needCopyFiles.contains(item.getPath())) {
                System.out.println(item.getPath());
                FileInputStream fis = new FileInputStream(item);
                String[] dir = item.getPath().split("\\");
                String fileName = dir[7]+dir[8]+".xml";
                FileOutputStream fos = new FileOutputStream(path3 + File.separator + fileName);
                byte[] b = new byte[1024];
                for (int i=0; (i=fis.read(b))!=-1;) {
                    fos.write(b,0,i);
                    fos.flush();
                }
                fos.close();
                fis.close();
            }
        } else {
            listResPath(item.getPath());
        }
    }
}

手工找出包含ru的模塊,在項目里看一下需要補充翻譯哪些字段,復制這些字段到新建的xml文件里,把這些xml文件也放在translate文件夾。

把translate文件夾里的文件讀取到excel

import com.alibaba.excel.EasyExcel;
import org.dom4j.Document;
import org.dom4j.DocumentException;
import org.dom4j.Element;
import org.dom4j.io.SAXReader;

import java.io.File;
import java.util.*;

public class Strings2Excel {

    private static final List<ExcelDataBean> excelDataBeanList = new ArrayList<>();

    public static void main(String[] args) {
        try {
            traverseFile("D:\xxx\translate");
            write2Excel();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void write2Excel() {
        String dst = "D:\xxx\res.xlsx";
        System.out.println("excel list size: " + excelDataBeanList.size());
        EasyExcel.write(dst, ExcelDataBean.class).sheet("value").doWrite(excelDataBeanList);
    }

    public static void traverseFile(String src) throws Exception {
        File path2 = new File(src);

        if (!path2.exists()) {
            System.out.println("源路徑不存在");
            return;
        }

        File[] items = path2.listFiles();
        if (items == null) return;
        for (File item : items) {
            readXml(item);
        }
    }

    private static void readXml(File file) throws DocumentException {
        SAXReader reader = new SAXReader();
        Document document = reader.read(file);
        Element rootElement = document.getRootElement();
        Iterator<Element> iterator = rootElement.elementIterator();
        while (iterator.hasNext()) {
            Element child = iterator.next();
            String name = child.attribute(0).getValue();
            String value = child.getStringValue();
            System.out.println(name + " = " + value);
            excelDataBeanList.add(new ExcelDataBean(name, value));
        }
    }
}
@Data
public class ExcelDataBean {
    private String name;
    private String value;
    private String translate;
}

需要引入的依賴:

<dependencies>
    <dependency>
        <groupId>com.alibaba</groupId>
        <artifactId>easyexcel</artifactId>
        <version>2.2.4</version>
    </dependency>

    <!--xls-->
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi</artifactId>
        <version>3.17</version>
    </dependency>
    <dependency>
        <groupId>org.apache.poi</groupId>
        <artifactId>poi-ooxml</artifactId>
        <version>3.17</version>
    </dependency>
    <!-- https://mvnrepository.com/artifact/org.dom4j/dom4j -->
    <dependency>
        <groupId>org.dom4j</groupId>
        <artifactId>dom4j</artifactId>
        <version>2.1.3</version>
    </dependency>
    <dependency>
        <groupId>org.slf4j</groupId>
        <artifactId>slf4j-simple</artifactId>
        <version>1.7.5</version>
    </dependency>
</dependencies>

因為不同模塊可能會有重復的中文字段,翻譯的同事是去重了翻譯的,所以拿到翻譯好了的excel之后,要把重復的翻譯填充一下。思路是讀取翻譯前的文件到excelDataBeanList、讀取翻譯后的文件到translatedList,根據兩個列表中相同的中文字段填充excelDataBeanList的俄文字段然后輸出到新文件。

import com.alibaba.excel.EasyExcel;
import com.alibaba.excel.context.AnalysisContext;
import com.alibaba.excel.event.AnalysisEventListener;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

public class FillTranslated {

    private static final List<ExcelDataBean> excelDataBeanList = new ArrayList<>();
    private static final List<ExcelDataBean> translatedList = new ArrayList<>();

    public static void main(String[] args) {
        try {
            readRes("D:\xxx\res.xlsx");
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    private static void readRes(String s) {
        File file = new File(s);
        EasyExcel.read(file, ExcelDataBean.class, new AnalysisEventListener<ExcelDataBean>() {

            @Override
            public void invoke(ExcelDataBean bean, AnalysisContext analysisContext) {
                excelDataBeanList.add(bean);
            }

            @Override
            public void doAfterAllAnalysed(AnalysisContext analysisContext) {
                readTranslated("D:\xxx\translated.xlsx");
            }
        }).sheet().doRead();
    }

    private static void readTranslated(String s) {
        File file = new File(s);
        //這個read其實是按列讀的,并不是根據列標題和類屬性名稱匹配的
        EasyExcel.read(file, ExcelDataBean.class, new AnalysisEventListener<ExcelDataBean>() {

            @Override
            public void invoke(ExcelDataBean bean, AnalysisContext analysisContext) {
                translatedList.add(bean);
            }

            @Override
            public void doAfterAllAnalysed(AnalysisContext analysisContext) {
                fillTranslated();
                write2Excel();
            }
        }).sheet().doRead();
    }

    private static void fillTranslated() {
        for (ExcelDataBean bean : translatedList) {
            excelDataBeanList.forEach(a -> {
                if (a.getValue() != null && a.getValue().equals(bean.getValue())) {
                    a.setTranslate(bean.getTranslate());
                }
            });
        }
    }

    private static void write2Excel() {
        String dst = "D:\xxx\翻譯字段.xlsx";
        System.out.println("excel list size: " + excelDataBeanList.size());
        EasyExcel.write(dst, ExcelDataBean.class).sheet("value").doWrite(excelDataBeanList);
    }
}

把excel轉換成xml

A列BCHK
namevaluetranslate給name加雙引號拼接xml里的string
detail_up收起убрать=""""&A2&""""="<string name="&H2&">"&C2&"</string>"

到此,相信大家對“Android需要翻譯的strings有哪些”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

淳化县| 永新县| 黄浦区| 电白县| 西吉县| 卢龙县| 普兰县| 株洲市| 辉南县| 涿州市| 册亨县| 嘉定区| 潞西市| 五指山市| 什邡市| 葫芦岛市| 澄城县| 红桥区| 朝阳县| 宁都县| 开阳县| 城步| 集安市| 太仓市| 许昌县| 武汉市| 年辖:市辖区| 肃北| 肇东市| 凤台县| 玉环县| 嵊泗县| 广西| 崇左市| 海林市| 敖汉旗| 芮城县| 治多县| 资阳市| 东山县| 宝兴县|