4

我得到了error 1000 (URL bad excess),我不确定发生了什么。示例 URL 大致如下所示(当我使用 NSURL 请求时,它已经具有从 Bad URL读取的百分比编码):

http://test1.test.com/X?op=find&base=tpl01&request=%28%28WCL=DVD%20or%20WCL=VCD%20or%20WCL=SDVD%29%20AND%20%28WFM=VM%29%20AND%20%28WIS=19%20or%20WIS=01%29%29 

但是,我仍然不确定为什么它不起作用。

如果需要(在百分比编码之前):

http://test1.test.com/X?op=find&bas=tp01&request=((WCL=DVD or WCL=VCD or WCL=SDVD) AND (WFM=VM) AND (WIS=19 or WIS=01))

在我的互联网连接中,我已经记录了它,request.URL但它似乎被取消了。我确实插入了我的网址。将以任何方式感谢您的帮助。

4

1 回答 1

0

编辑:编码类型stringByAddingPercentEscapesUsingEncoding可能会解决您的问题

NSString* urlText = @"http://test1.test.com/X?op=find&bas=tp01&request=((WCL=DVD or WCL=VCD or WCL=SDVD) AND (WFM=VM) AND (WIS=19 or WIS=01))";
urlText = [urlText stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSURL URLWithString: urlText];
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url 
                                                       cachePolicy:NSURLRequestReloadIgnoringLocalAndRemoteCacheData
                                                   timeoutInterval:10];

[request setHTTPMethod: @"GET"];

    NSError *requestError;
NSURLResponse *urlResponse = nil;


NSData *response1 = [NSURLConnection sendSynchronousRequest:request returningResponse:&urlResponse error:&requestError];

希望这可以帮助

于 2012-08-31T04:24:39.063 回答