Android SQLite 数据库 IO 错误
我在访问 android sqlite 数据库时遇到一个奇怪的问题。我有一行打开的代码应该打开数据库文件,但它显示空指针异常作为 IOException。
SQLiteDatabase myDB = this.openOrCreateDatabase("PasswordManager", MODE_PRIVATE, null);
这不在活动类中,而只是在标准 java 类中。我知道数据库存在,因为我在代码的其他部分使用同一行,唯一的区别是在扩展活动的类中。
感谢您提供的任何帮助。
I have a strange problem when accessing android sqlite datbase. I have a line of code that opens supposed to open the database file but it displays a null pointer exception as an IOException.
SQLiteDatabase myDB = this.openOrCreateDatabase("PasswordManager", MODE_PRIVATE, null);
This isn't in an activity class this is just in a standard java class. I know the datbase exists as I am using the same line in other parts of the code, the only difference, everywhere else is inside a class that extends an activity.
Thanks for any help you can offer.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 Context 引用从调用 Activity 传递到该 Java 类,并使用它连接到数据库。
Pass a Context reference from the calling Activity to that Java class and use it to connect to your database.