从apk文件读取Strings.xml文件

有什么办法可以从中读取strings.xml文件apk file

我对库或类/代码文件仅在中定义的字符串不感兴趣strings.xml

回答:

是的,您可以使用以下命令提取所有资源文件 apktool

脚步 -

1.) Download files from above links and extract them in a folder.

2.) Open cmd -> run

3.) Run command as

apktool.bat d source.apk destination_path

要么

1.) Put apktool.jar and test.apk in same folder 

2.) Go to the jar and .apk path by command line

3.) And fire the command java -jar apktool.jar d test.apk

4.) It will generate a folder with the name "test" in the same folder.

以上是 从apk文件读取Strings.xml文件 的全部内容, 来源链接: utcz.com/qa/400416.html

回到顶部