add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# dexdump
> 显示有关 Android DEX 文件的信息。
> 更多信息:<https://manned.org/dexdump>。
- 从 APK 文件中提取类和方法:
`dexdump {{path/to/file.apk}}`
- 显示 APK 文件中包含的 DEX 文件的头信息:
`dexdump -f {{path/to/file.apk}}`
- 显示可执行部分的反汇编输出:
`dexdump -d {{path/to/file.apk}}`
- 将结果输出到文件:
`dexdump -o {{path/to/file}} {{path/to/file.apk}}`