Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将密钥库文件导入我的应用程序。我的res/raw文件夹里有它。我查看了有关 stackoverflow 的其他问题,但找不到任何可行的解决方案。
res/raw
我试过使用
InputStream in = this.getResources().openRawResource(R.raw.keystore);
它导致java.lang.NullPointerException.
java.lang.NullPointerException
最后,我让它工作了。
问题是,我在构造函数中使用了这个。并且在退出构造函数之前,您没有可用的上下文。就是这样。