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.
在 Android 中,在 SQLite 中输入数据比在 .txt 文件中使用更多的时间和更多的代码行。
将数据保存为 .txt 并使用 FileReader 方便获取数据。
使用 SQLite 而不是 File 有什么优势?
立即浮现在脑海中的主要原因是 SQLite 为您提供的,而一个简单的文件却没有:
O(log n)
O(n)
请注意,尝试通过自己使用平面文件来解决任何这些问题将开始进入数据库领域——但您当然真的不想自己编写那种东西。