Android整理需要翻譯的strings資源詳情

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 path1 = new File(src);
    if (!path1.exists()) {
        return;
    }

    File[] items = path1.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 path1 = new File(src);
    File path2 = new File("D:\xxx\translate");

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

    File[] items = path1.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(path2 + 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 path1 = new File(src);

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

        File[] items = path1.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列 B C H K
name value translate 給name加雙引號 拼接xml裡的string
detail_up 收起 убрать =””””&A2&”””” =”<string name=”&H2&”>”&C2&”</string>”

到此這篇關於Android整理需要翻譯的strings資源詳情的文章就介紹到這瞭,更多相關Android整理需要翻譯的strings資源內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: