0

我正在将 HTML 内容(具有项目符号等特殊字符)插入 SQLite 数据库。

当我尝试在视图上获取内容时,它没有正确显示特殊字符。它向我显示垃圾文本。

如何确保我在数据库中插入的任何文本都正确显示在视图中。

谢谢!

我的插入代码:

// 这个查询方法实现在不同的文件中

- (NSArray *)executeQuery:(NSString *)sql arguments:(NSArray *)args {
    sqlite3_stmt *sqlStmt;

    if (![self prepareSql:sql inStatament:(&sqlStmt)])
        return nil;

    int i = 0;
    int queryParamCount = sqlite3_bind_parameter_count(sqlStmt);
    while (i++ < queryParamCount)
        [self bindObject:[args objectAtIndex:(i - 1)] toColumn:i inStatament:sqlStmt];

    NSMutableArray *arrayList = [[NSMutableArray alloc] init];   // By Devang
    int columnCount = sqlite3_column_count(sqlStmt);
    while ([self hasData:sqlStmt]) {
        NSMutableDictionary *dictionary = [[NSMutableDictionary alloc] init];
        for (i = 0; i < columnCount; ++i) {
            id columnName = [self columnName:sqlStmt columnIndex:i];
            id columnData = [self columnData:sqlStmt columnIndex:i];
            [dictionary setObject:columnData forKey:columnName];
        }
        [arrayList addObject:dictionary];

        //[arrayList addObject:[dictionary autorelease]];
    }

    sqlite3_finalize(sqlStmt);

    return arrayList;
}

// 现在通过 make 对象为这个文件调用这个方法

NSString *inserQuery =[NSString stringWithFormat:@"insert into feedtest (title,summary,image,id) values ('%@','%@','%@',%d)",cell.textLabel.text,source,returnURL,indexPath.row];
        NSLog(@"query - %@",inserQuery);

    [database executeQuery:inserQuery];

// 取回数据

NSString *sd=[NSString stringWithFormat:@"Select title,summary from feedtest"];

    NSMutableArray *p=[[NSMutableArray alloc]init];
    p=[[database executeQuery:sd ] mutableCopy];
    [database close];

    NSString *titleHTML = [[p objectAtIndex:i]valueForKey:@"title"];
    NSString *postHTML =[[p objectAtIndex:i]valueForKey:@"summary"];
    NSLog(@"%@",titleHTML);
    NSLog(@"%@",postHTML);
4

1 回答 1

5

您可以使用 FireFox 插件 SQLite 检查您的本地数据库。但是,有时在检索时我们会遇到奇怪的问题,例如存储中的内容无法正常运行,有时还会出现崩溃。所以我的建议是你应该检查编码方案(通常,这并不重要)并且在获取数据时使用这个:

[NSString stringWithFormat:@"%s",(const char*)sqlite3_column_text(statement, 4)] ;

代替:

[NSString stringWithUTF8String:(const char*)sqlite3_column_text(statement, 4)];

希望,这就是你要找的。任何问题都可以回复我。:)

于 2012-11-30T05:02:53.513 回答