gpt4 book ai didi

java - 安卓|运行时获取 OkHTTP 库版本

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:37:10 24 4
gpt4 key购买 nike

最近我分析了我的应用程序的崩溃报告,发现了几个指向 okhttp

的堆栈跟踪

我的应用不明确依赖于 okhttp

AFAIK okhttp 版本取决于 Android 操作系统版本,okhttp 库本身放置在设备上

为了帮助解决问题,我决定记录 okhttp 库版本,看起来我为此找到了几个有用的类

  1. com.squareup.okhttp.internal.Version
  2. okhttp3.internal.Version

为了确保我没有弄错,我采用了 com.android.okhttp.internal.http.HttpURLConnectionImpl 类形式的堆栈跟踪并尝试 Class.forName 它-成功

我还注意到 com.squareup.okhttp 转换为 com.android.okhttp 在构建时看起来很像,所以我完全尝试了这样的变体

  1. Class.forName("com.android.okhttp.internal.Version") -> java.lang.ClassNotFoundException
  2. Class.forName("com.squareup.okhttp.internal.Version") -> java.lang.ClassNotFoundException
  3. Class.forName("okhttp3.internal.Version") -> java.lang.ClassNotFoundException
  4. Class.forName("com.android.okhttp.internal.http.HttpURLConnectionImpl") -> 成功

谁能解释一下为什么?我错过了什么?

更新

我已经从我的设备中提取 okhttp.jar adb pull/system/framework/okhttp.jar 但它仅包含 MANIFEST.MF

最佳答案

从 4.xx 开始,谷歌正在使用 squareup 的 okhttp 部分

/**
* This implementation uses HttpEngine to send requests and receive responses. This class may use
* multiple HttpEngines to follow redirects, authentication retries, etc. to retrieve the final
* response body.
*
* <h3>What does 'connected' mean?</h3> This class inherits a {@code connected} field from the
* superclass. That field is <strong>not</strong> used to indicate whether this URLConnection is
* currently connected. Instead, it indicates whether a connection has ever been attempted. Once a
* connection has been attempted, certain properties (request header fields, request method, etc.)
* are immutable.
*/
public class HttpURLConnectionImpl extends HttpURLConnection {


private String defaultUserAgent() {
String agent = System.getProperty("http.agent");
return agent != null ? Util.toHumanReadableAscii(agent) : Version.userAgent();
}

https://github.com/square/okhttp/blob/master/okhttp-urlconnection/src/main/java/okhttp3/internal/huc/HttpURLConnectionImpl.java

http://square.github.io/okhttp/

一切都取决于设备——你使用的是什么操作系统版本,因为 api 在不断发展,你可以使用反射,但你需要知道特定 api 上的字段是什么

参见 https://github.com/square/okhttp/blob/master/CHANGELOG.md

要比较不同的 API 版本,请使用:https://android.googlesource.com/platform/external/okhttp/

你可以先试试

System.getProperty("http.agent");

编辑:

通过反射

 HttpURLConnection  connection = (HttpURLConnection) new URL("http://google.com")
.openConnection();
Method method = connection.getClass().getDeclaredMethod("defaultUserAgent");
method.setAccessible(true);
String okEngineVersion = (String) method.invoke(connection, new Object[]{});

一样
String okEngineVersion = System.getProperty("http.agent");

如果你想打扰:

  • 每个类都以相同的方式对待 -> 平等(没有版本控制 - 你只能检查魔法次要主要数字 - 来自类的 java 编译器版本)
  • /system/framework/okhttp.jar 的 list 不包含版本属性

如果你想要 okhttp.internal.Version 类那么:

 File file = new File("/system/framework/okhttp.jar");

// using javaxt-core lib
Jar jar = new Jar(file);
jar.getVersion();

// load dex
DexFile dexfile = DexFile.loadDex(file.getAbsolutePath(),
File.createTempFile("opt", "dex", _context.getCacheDir()).getPath(), 0);

Enumeration<String> dexEntries = dexfile.entries();
ClassLoader systemClassLoader = DexClassLoader.getSystemClassLoader();

while (dexEntries.hasMoreElements()) {
String className = dexEntries.nextElement();
Class<?> aClass = systemClassLoader.loadClass(className);
}

conclusion: If you want to avoid crash of app from library changes delivery own version of library and load classes on the fly or compile with apk

关于java - 安卓|运行时获取 OkHTTP 库版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36196067/

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