gpt4 book ai didi

Android获取GPU型号

转载 作者:可可西里 更新时间:2023-10-31 22:04:23 97 4
gpt4 key购买 nike

从终端运行以下命令时:

adb shell dumpsys | grep GLES

输出是:

GLES: Qualcomm, Adreno (TM) 330, OpenGL ES 3.0 V@53.0 AU@ (CL@)

但是,当以编程方式运行时,我无法获得输出。

String GPUModel = "";
String command = "adb shell dumpsys | grep GLES";

try {

InputStream inputStream = Runtime.getRuntime()
.exec(command)
.getInputStream();

InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);

GPUModel = bufferedReader.readLine();

} catch (IOException e) {
e.printStackTrace();
}

GPUModel 为空。

最佳答案

您不能从您的应用程序运行 dumpsys 命令。它需要 DUMP 权限,只有系统应用程序和使用与系统相同的 key 签名的应用程序被授予。

关于Android获取GPU型号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29753378/

97 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com