我有一个URL http://www.hdwallpapers.in/walls/honda_v4_concept_widescreen_bike-wide.jpg 我想提取的文件名是“honda_v4_concept_widescreen_bike-wide.jpg” 我该怎么办? 下面的代码应该可以工作。将您的网址放在
http://www.hdwallpapers.in/walls/honda_v4_concept_widescreen_bike-wide.jpg
我想提取的文件名是“honda_v4_concept_widescreen_bike-wide.jpg”
我该怎么办?
下面的代码应该可以工作。将您的网址放在名为yourURL的NSURL变量中NSString *JPEGfilename = [[yourURL absoluteString] lastPathComponent];
这将给你你的JPEG文件名或以下:
NSURL *yourURL = [NSURL URLWithString:@"http://www.hdwallpapers.in/walls/honda_v4_concept_widescreen_bike-wide.jpg"]; NSString *JPEGfilename = [yourURL lastPathComponent];