与Android中的外部SQLite数据库进行交互.

我正在尝试使用Web服务(我无法控制),当您查询它时会返回一个sqlite数据库.有什么办法吗?

解决方法:

我正在做一个类似项目的项目.我请求对数据库进行更新,并且根据所需的更新量,它要么向下发送一个全新的数据库,要么发送一系列sql语句.我强烈建议将数据库保留在sdcard上(如果可用),尤其是如果您要下载的数据库大小可变且大小仅超过几千字节时.

我正在执行以下操作以获取文件(修改口味,因为您可能需要在SOAP响应中处理XML,也请忽略进度内容.)

fileStream = new FileOutputStream(new File(I-build-my-filename-stuff-above-here));

/* fileData is a byte[8192] */
while((i = httpResponse.read(fileData)) > -1) {
    fileStream.write(fileData, 0, i);

    position += i;

    if (item.getUpdateType() == UpdateItem.FULL_FILE) {
        progress = position / item.getSize();
    } else {
        progress = position / (item.getSize() * 2);
    }

    item.setProgress(progress);
} // end loop through getting http response stream

fileStream.close();
httpResponse.close();

然后,我执行以下操作来访问数据库.由于这些数据库也用于iPhone应用程序,因此它们没有特定于Android的表,因此需要sqliteDatabase.NO_LOCALIZED_COLLATORS标志来访问数据库.请注意,我的数据库类扩展了sqliteOpenHelper类:

public Database(Context context, String fileName, String title) {
    super(context, fileName, null, 1);
    this.context = context;
    this.title = title;
    this.fileName = fileName;

    if (fileName != null && fileName.contains("/sdcard")) {
        db = sqliteDatabase.openDatabase(fileName, null, sqliteDatabase.NO_LOCALIZED_COLLATORS | sqliteDatabase.CREATE_IF_NECESSARY);            
    } else {
        db = getWritableDatabase();
    }

}

相关文章

SQLite架构简单,又有Json计算能力,有时会承担Json文件/RES...
使用Python操作内置数据库SQLite以及MySQL数据库。
破解微信数据库密码,用python导出微信聊天记录
(Unity)SQLite 是一个软件库,实现了自给自足的、无服务器...
安卓开发,利用SQLite实现登陆注册功能