当我使用以下行进行日志记录时,发现了这种非常不寻常的行为
Log.v("Upper Case", new String(encryptedActivationKey));
其中,encryptedActivationKey是
private byte[] encryptedActivationKey;
当在googleAPI 2.2中打印时,此命令会注销以显示“空指针异常”,但同一件事在软糖4.1.2上运行良好。
请帮忙为什么会这样?
谢谢
最佳答案
尝试初始化byte []或检查byte []是否为null。
Log.v("Upper Case", (encryptedActivationKey != null ? new String(encryptedActivationKey) : null));