0
NSString *htmlSource = [NSString stringWithContentsOfURL:[NSURL URLWithString:urlString] encoding:0x80000000 + kCFStringEncodingDOSKorean error:nil];
 NSLog(htmlSource);

我得到像 (col width="16"/)~~~ 这样的 html 结果标签,但真正的 html 标签是 (col width="16%"/)

% 字符消失。什么是问题?

4

1 回答 1

1

该字符串可能仍包含一个%; NSLog() 本身赋予符号特殊的意义(考虑使用,等%会发生什么)。%@%d

尝试这样做:NSLog(@"%@", htmlSource); 这将只记录一个对象(字符串)并将其排除在格式化参数之外。

于 2012-08-12T13:53:58.180 回答