Android SQLite 数据库 IO 错误

发布于 2024-11-08 11:23:15 字数 291 浏览 0 评论 0原文

我在访问 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

变身佩奇 2024-11-15 11:23:15

将 Context 引用从调用 Activity 传递到该 Java 类,并使用它连接到数据库。

Pass a Context reference from the calling Activity to that Java class and use it to connect to your database.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文