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.
在我的应用程序中,我有 pdf 文件。我想将这些 pdf 文件保存到我的数据库中。我使用 SQLite 作为我的后端。如何将这些 pdf 文件格式化为字节。
您可以简单地读取 pdf 文件的所有字节并将它们存储在 sqlite DB 的 blob 字段中,但是强烈推荐的更好的解决方案是将文件存储在内部存储中,而在您的数据库中只存储文件的路径。您还必须检查是否有足够的内存存储空间供您使用。