android - 无法访问 jarfile ..\framework\monkeyrunner-25.3.2.jar

标签 android monkeyrunner

从 Windows 命令提示符 (Admin) 执行 monkeyrunner 命令会返回一个错误

Unable to access jarfile ..\framework\monkeyrunner-25.3.2.jar

这是我执行的命令

monkeyrunner -help text Help

而且我可以在\Local\Android\sdk\tools\lib 路径下找到这个 jar。

最佳答案

我遇到了同样的问题。命令提示符用户的 bat 文件 monkeyrunner.bat 中存在一些错误。 在 26 秒内修复它:

  1. 在包含 monkeyrunner.bat 的目录中创建文件 mymonkeyrunner.bat

  2. 将下面的代码复制到 mymonkeyrunner.bat

    @echo off
    rem Copyright (C) 2010 The Android Open Source Project
    rem
    rem Licensed under the Apache License, Version 2.0 (the "License");
    rem you may not use this file except in compliance with the License.
    rem You may obtain a copy of the License at
    rem
    rem      http://www.apache.org/licenses/LICENSE-2.0
    rem
    rem Unless required by applicable law or agreed to in writing, software
    rem distributed under the License is distributed on an "AS IS" BASIS,
    rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    rem See the License for the specific language governing permissions and
    rem limitations under the License.
    
    rem don't modify the caller's environment
    setlocal
    
    rem Set up prog to be the path of this script, including following symlinks,
    rem and set up progdir to be the fully-qualified pathname of its directory.
    set prog=%~f0
    
    rem Change current directory and drive to where the script is, to avoid
    rem issues with directories containing whitespaces.
    cd /d %~dp0
    
    rem Check we have a valid Java.exe in the path.
    set java_exe=
    call ..\lib\find_java.bat
    if not defined java_exe goto :EOF
    for /f %%a in ("%APP_HOME%\lib\monkeyrunner-25.3.2.jar") do set jarfile=%%~nxa
    set frameworkdir=.
    set libdir=
    
    if exist %frameworkdir%\%jarfile% goto JarFileOk
        set frameworkdir=..\lib
    
    if exist %frameworkdir%\%jarfile% goto JarFileOk
        set frameworkdir=..\framework
    
    :JarFileOk
    
    set jarpath=%frameworkdir%\%jarfile%
    
    if not defined ANDROID_SWT goto QueryArch
        set swt_path=%ANDROID_SWT%
        goto SwtDone
    
    :QueryArch
    
        for /f "delims=" %%a in ('%frameworkdir%\..\bin\archquery') do set swt_path=%frameworkdir%\%%a
    
    :SwtDone
    
    if exist "%swt_path%" goto SetPath
        echo SWT folder '%swt_path%' does not exist.
        echo Please set ANDROID_SWT to point to the folder containing swt.jar for your platform.
        exit /B
    
    :SetPath
    
    call "%java_exe%" -Xmx512m "-Djava.ext.dirs=%frameworkdir%;%swt_path%" -Dcom.android.monkeyrunner.bindir=..\..\platform-tools -jar %jarpath% %*
    

关于android - 无法访问 jarfile ..\framework\monkeyrunner-25.3.2.jar,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44666939/

相关文章:

Android 和经过身份验证的带有 JSON 正文的 HttpPut

android - 如何防止Android猴子关闭WIFI?

android - 自动设置 Android CTS 测试

android - -Djava.ext.dirs=[...]/Sdk/tools/lib :[. ..]/Sdk/tools/lib/x86_64 在linux上启动monkeyrunner时不支持

android - ListView onItemClick 不起作用

Android Activity 识别不适用于 Nexus 5

android - 使用piccaso做图片缓存,支持离线和在线

python - 将 BeautifulSoup 导入 Monkeyrunner

android - 在 monkeyrunner 的 ".installPackage()"中使用变量的问题

android - android中的霜玻璃效果