赞
踩
2.AssetStudio:Releases · Perfare/AssetStudio · GitHub
1.Apktool是一个开源的Android应用程序逆向工程工具,主要用于反编译APK文件(Android应用程序包)为Smali代码,还可以重新打包APK文件。它主要由Java编写,可以跨平台运行。
2.Apktool的使用方法如下:
- @echo off
- setlocal
- set BASENAME=apktool_
- chcp 65001 2>nul >nul
-
- set java_exe=java.exe
-
- if defined JAVA_HOME (
- set "java_exe=%JAVA_HOME%\bin\java.exe"
- )
-
- rem Find the highest version .jar available in the same directory as the script
- setlocal EnableDelayedExpansion
- pushd "%~dp0"
- if exist apktool.jar (
- set BASENAME=apktool
- goto skipversioned
- )
- set max=0
- for /f "tokens=1* delims=-_.0" %%A in ('dir /b /a-d %BASENAME%*.jar') do if %%~B gtr !max! set max=%%~nB
- :skipversioned
- popd
- setlocal DisableDelayedExpansion
-
- rem Find out if the commandline is a parameterless .jar or directory, for fast unpack/repack
- if "%~1"=="" goto load
- if not "%~2"=="" goto load
- set ATTR=%~a1
- if "%ATTR:~0,1%"=="d" (
- rem Directory, rebuild
- set fastCommand=b
- )
- if "%ATTR:~0,1%"=="-" if "%~x1"==".apk" (
- rem APK file, unpack
- set fastCommand=d
- )
-
- :load
- "%java_exe%" -jar -Xmx1024M -Duser.language=en -Dfile.encoding=UTF8 -Djdk.util.zip.disableZip64ExtraFieldValidation=true -Djdk.nio.zipfs.allowDotZipEntry=true "%~dp0%BASENAME%%max%.jar" %fastCommand% %*
-
- rem Pause when ran non interactively
- for %%i in (%cmdcmdline%) do if /i "%%~i"=="/c" pause & exit /b
1.AssetStudio是一款开源的Unity资源提取工具,由Perfare开发,可用于解压和分析Unity引擎制作的游戏中的各种资源,如音频、视频、图片、模型和场景等。
2.AssetStudio的使用方法如下:
未完待续........
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。