从apk文件读取字符串.xml文件
有没有办法从 中读取文件?
我对libs或类/代码文件不感兴趣,只对中定义的字符串感兴趣strings.xml
apk file
strings.xml
有没有办法从 中读取文件?
我对libs或类/代码文件不感兴趣,只对中定义的字符串感兴趣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.