gpt4 book ai didi

java - Android:Log Verbose 在 2.2 上针对新字符串 "byte array"初始化抛出错误

转载 作者:行者123 更新时间:2023-12-01 14:11:04 38 4
gpt4 key购买 nike

当我使用以下行进行日志记录时,发现了这种非常不寻常的行为

Log.v("Upper Case", new String(encryptedActivationKey));

其中,cryptedActivationKey 是一个 private byte[] cryptoActivationKey;

当在 googleAPI 2.2 中打印时,会因“空指针异常”而注销,但同样的事情在 jellybean 4.1.2 上运行良好。

请帮忙解释为什么会发生这种情况?

谢谢

最佳答案

尝试初始化byte[]或检查byte[]是否为null。

Log.v("Upper Case", (encryptedActivationKey != null ? new String(encryptedActivationKey) : null));

关于java - Android:Log Verbose 在 2.2 上针对新字符串 "byte array"初始化抛出错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18526049/

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