0

「Test&Test」または「

検索して置き換えずに、その表示を「&」または「」」にする方法はありますか?

4

3 に答える 3

0

これを試してみませんか?

NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];

[request setURL:[NSURL URLWithString:[NSString stringWithFormat:@"http://www.mypage.com/content.html"]]];
[request setHTTPMethod:@"GET"];

NSHTTPURLResponse* authResponse;
NSError* authError;
NSData * authData = [NSURLConnection sendSynchronousRequest:request returningResponse:&authResponse error:&authError];      

NSString *authResponseBody = [[NSString alloc] initWithData:authData encoding:NSUTF8StringEncoding];

NSLog(@" Nice Result: %@", authResponseBody);

エイドリアン

于 2009-06-27T20:31:34.263 に答える
0

読み取ったhtml文字列の形式が正しくありません。

読んでいるhtmlから正しいテキストを取得するために、UTF-8またはその他の形式で読んでみてください。

HTMLコンテンツからNSStringを読み取るコードを実際に投稿できますか?

于 2009-06-27T20:11:04.150 に答える
0

CFXMLCreateStringByUnescapingEntitiesがそれを行う必要があります。フリーダイヤルブリッジの魔法のおかげで、NSStringを使用することができます。

于 2009-06-27T20:50:50.293 に答える