In my application, the requirement is to use UIApplication's openURL method to start browser with following URL:

http://192.168.100.80/1003/images/test/いうydさdfghjk-320x160.png

Above string is stored in NSString. When I am passing above URL as parameter to openURL, its saying that the page is not found and I noticed that the URL in the address bar is not in japanese characters. How can I show above URL in safari?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

You have to escape japanese characters using UTF8 encoding and then replace them:

    NSString *query = @"ファイル";
    NSString *encodedQuery = [query stringByAddingPercentEscapesUsingEncoding: NSUTF8StringEncoding];
    NSString *urlString = [NSString stringWithFormat:@"http://ja.wikipedia.org/wiki/%@:East_Asian_Cultural_Sphere.png", encodedQuery];
    [[UIApplication sharedApplication] openURL:[NSURL URLWithString: urlString]];
link|improve this answer
HI, Thanks for the update. I already for the solution for this. – Satyam svv Feb 6 '11 at 12:18
@Satyam svv, if you already had the solution, why didn't you answer your own question?? ;) – makdad Feb 6 '11 at 23:24
I forgot that I posted a query here. Else I should have updated. – Satyam svv Feb 7 '11 at 6:42
But this can be done only when we know that these will be the Japanese chars... in my app i dont know what will be the url contains in spanish.. so what can be done then...? – mAc Nov 14 '11 at 9:10
@mAc this works with any language. – Max Nov 14 '11 at 13:33
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.