zygote : JNI WARNING: java.lang.StackOverflowError thrown while calling printStackTrace
时间: 2024-04-06 07:34:11 浏览: 282
这是一个 Java 虚拟机的警告信息,意思是在调用 `printStackTrace` 方法时出现了 `StackOverflowError` 异常。`StackOverflowError` 异常是指当方法调用的层级过深时,栈空间不足而导致的错误。在这个特定的情况下,可能是因为 JNI 方法中出现了递归调用或者死循环等问题,导致栈空间被耗尽。需要检查代码中是否存在这样的问题,并进行修复。如果需要更详细的信息,可以查看 Java 虚拟机的日志文件。
相关问题
1.2.14\AirtestIDE\airtest\core\android\static\adb\windows\adb.exe -P 5037 -s f19e7fbe shell ls [21:51:10][ERROR]<airtest.core.api> Traceback (most recent call last): File "airtest\core\android\adb.py", line 374, in shell File "airtest\core\android\adb.py", line 332, in raw_shell File "airtest\core\android\adb.py", line 197, in cmd airtest.core.error.AdbError: stdout[b'acct\r\napex\r\nbin\r\nbugreports\r\ncache\r\ncharger\r\nconfig\r\ncust\r\nd\r\ndata\r\ndebug_ramdisk\r\ndefault.prop\r\ndev\r\netc\r\nlost+found\r\nmnt\r\nodm\r\noem\r\nproc\r\nproduct\r\nproduct_services\r\nres\r\nsbin\r\nsdcard\r\nstorage\r\nsys\r\nsystem\r\nvendor\r\n'] stderr[b'ls: ./init.zygote64_32.rc: Permission denied\r\nls: ./init.rc: Permission denied\r\nls: ./init.usb.rc: Permission denied\r\nls: ./ueventd.rc: Permission denied\r\nls: ./init.zygote32.rc: Permission denied\r\nls: ./init.recovery.hardware.rc: Permission denied\r\nls: ./init: Permission denied\r\nls: ./init.miui.google_revenue_share_v2.rc: Permission denied\r\nls: ./init.miui.cust.rc: Permission denied\r\nls: ./init.environ.rc: Permission denied\r\nls: ./init.miui.post_boot.sh: Permission denied\r\nls: ./init.miui.qadaemon.rc: Permission denied\r\nls: ./verity_key: Permission denied\r\nls: ./init.recovery.qcom.rc: Permission denied\r\nls: ./init.miui.rc: Permission denied\r\nls: ./init.usb.configfs.rc: Permission denied\r\nls: ./init.exaid.hardware.rc: Permission denied\r\nls: ./init.miui.google_revenue_share.rc: Permission denied\r\nls: ./init.miui.nativedebug.rc: Permission denied\r\nls: ./init.miui.early_boot.sh: Permission denied\r\nls: ./metadata: Permission denied\r\n'] During handling of the above exception, another exception occurred:
根据提供的引用内容,这是一个关于AirtestIDE的问题。根据引用\[1\],如果遇到旧版本使用没问题,但更新后出现问题的情况,需要提供详细的信息来进行问题解答。具体需要提供旧版本信息(IDE版本,是否使用本地python环境,若使用本地安装的airtest和pocoui版本如何)、新版本信息(IDE版本,是否使用本地python环境,若使用本地安装的airtest和pocoui版本如何)、进行了怎样的操作/运行了怎样的代码、旧版表现如何,新版表现如何(如出现报错,请提供完整的报错信息)。
根据引用\[2\],如果需要将本地Python环境的库更新至与1.2.14一样的环境,可以使用如下命令进行更新:
```
# airtest最新版为1.2.6
pip install -U airtest
# pocoui最新版为1.0.87
pip install -U pocoui
```
根据引用\[3\],在进行覆盖更新之前,请检查是否将脚本保存到了AirtestIDE的文件路径内,如果有,请备份脚本后再进行覆盖更新,否则进行覆盖更新操作后也会覆盖掉保存在AirtestIDE路径下的脚本。
根据提供的报错信息,可以看到出现了一个AdbError异常。这个异常是由airtest.core.android.adb模块的shell函数引发的。具体的错误信息是stdout和stderr的内容,其中包含了一些Permission denied的提示。根据这个错误信息,可能是由于权限问题导致的。建议检查相关的权限设置,确保有足够的权限来执行相应的操作。
请提供更多详细的信息,以便更准确地解决问题。
#### 引用[.reference_title]
- *1* *2* *3* [【更新公告】AirtestIDE更新至1.2.14版本](https://blog.csdn.net/AirtestProject/article/details/125161307)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^control_2,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
[28200:28200:0713/035136.924370:ERROR:zygote_host_impl_linux.cc(100)] Running as root without --no-sandbox is not supported. See https://crbug.com/638180.
这个错误提示表示以root用户身份运行谷歌浏览器时没有使用 `--no-sandbox` 选项,而在root用户下启动谷歌浏览器是不被支持的。这是由于安全性的考虑,为了防止潜在的恶意代码对系统造成损害。
为了解决这个问题,您可以按照以下步骤重新运行谷歌浏览器:
1. 关闭所有已经打开的谷歌浏览器窗口。
2. 以普通用户身份打开终端。
3. 运行以下命令启动谷歌浏览器,并使用 `--no-sandbox` 选项:
```
google-chrome-stable --no-sandbox
```
这将以普通用户身份运行谷歌浏览器,并且绕过了沙箱限制。
请注意,以root用户身份运行谷歌浏览器是不推荐的做法,因为它会降低系统的安全性。建议您以普通用户身份运行谷歌浏览器,这样可以更好地保护您的系统。
阅读全文