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.
我使用 sqlite 创建数据库。现在我想在我的服务器上备份一个数据库文件。
那么如何将我的sqlite数据库文件从我在android中的应用程序上传到服务器?
用于getDatabasePath()获取File指向数据库的对象。然后,在您关闭所有打开SQLiteOpenHelper的对象后,您可以使用、等SQLiteDatabase上传您的数据库。HttpUrlConnectionHttpClient
getDatabasePath()
File
SQLiteOpenHelper
SQLiteDatabase
HttpUrlConnection
HttpClient