我尝试以编程方式创建HTML文件。但生成的文件显示为空白文件。我不知道这个问题。
这是我的代码:
- (IBAction) createFileAction
{
NSLog(@"************* createFileAction *************");
NSMutableString *htmlString = [[NSMutableString alloc] init];
NSLog(@"%@",htmlString);
[htmlString appendString:@"<html><head><title></title><style type='text/css'>.style1{height: 27px;}#Text1{height: 19px;width: 210px;}.style2{width: 255px;}.style3{height: 27px;width: 255px;}#petValue{width: 206px;}#nameValue{width: 206px;}#dateValue{width: 209px;}"];
[htmlString appendString:@"#Text2{width: 215px;}#Text3{width: 210px;height: 22px;}#Text4{width: 209px;}.style8{width: 13px;}.style9{ width: 263px;}.style10{height: 27px;width: 263px;}"];
[htmlString appendString:@".style11{width: 418px;}.style12{width: 199px;}.style13{height: 27px; width: 199px;}.style14{height: 24px;}.style15{width: 410px;}</style> </head>"];
[htmlString appendString:@"<body>"];
NSString *originalString = [NSString stringWithContentsOfURL:[NSURL URLWithString:@"http://www.makepartsfast.com/2012/09/4337/more-3d-printing-in-metals-ex-one-introduces-the-m-flex-3d-printing-system/"] encoding:NSUTF8StringEncoding error:nil];
NSScanner *scanner = [NSScanner scannerWithString:originalString];
NSString *extractedString = nil;
[scanner scanUpToString:@"<div class=\"postarea\">" intoString:nil];
[scanner scanString:@"<div class=\"postarea\">" intoString:nil];
[scanner scanUpToString:@"<div style=\"clear:both;\">" intoString:&extractedString];
if (extractedString)
{
// string was extracted
NSLog(@"%@", extractedString);
}
NSLog(@"BEFORE= %@",htmlString);
[htmlString appendString:extractedString];
NSLog(@"AFTER= %@",htmlString);
[htmlString appendString:@"</body></html>"];
NSLog(@"FINAL=%@",htmlString);
// check to see if file already exists in documents directory
if([self.fileMgr fileExistsAtPath:self.file])
{
NSLog(@"File already exists");
}
else
{
NSLog(@"file does not exist");
NSLog(@"Try creating the file");
// file does not already exist so create it
[self.fileMgr createFileAtPath:file contents:nil attributes:nil];
NSLog(@"%@",htmlString);
[htmlString writeToFile:self.file atomically:NO encoding:NSStringEncodingConversionAllowLossy error:nil];
//Test again whether this file exists now that we have tried creating it
if([self.fileMgr fileExistsAtPath:self.file])
{
NSLog(@"File exists now");
}
else
{
NSLog(@"File still doesn't exist");
}
}
}
在这种方法中,我只能从html格式的 extractedString 中的网址中选择部分。将它附加到htmlstring。当我尝试追加不同的字符串然后它工作正常。
答案 0 :(得分:5)
这是因为您将NSStringEncodingConversionAllowLossy
作为encoding
参数传递。您应该传递一个字符串编码参数。发生的事情是NSStringEncodingConversionAllowLossy
等于1.但writeToFile:atomically:encoding:error:
期望字符串编码不变。字符串编码常量等于1是NSASCIIStringEncoding
。但是您的字符串无法转换为ASCII,因此您将获得一个空文件。将该行更改为使用UTF8并获得预期的非空文件:
[htmlString writeToFile:self.file atomically:NO encoding:NSUTF8StringEncoding error:nil];
您至少部分遇到此问题,因为您没有检查返回类型或错误情况。方法调用返回BOOL
,如果出现任何问题,将创建NSError
。如果您正在倾听,这可以帮助您找出问题所在。如果你这样做了:
NSError *saveError = nil;
if (![htmlString writeToFile:file atomically:NO encoding:NSStringEncodingConversionAllowLossy error:&saveError]) {
NSLog(@"Error writing file: %@", saveError);
}
您会看到一条错误消息,内容如下:
2012-11-21 11:20:47.250 Untitled[5731:707] Error writing file: Error Domain=NSCocoaErrorDomain Code=517 "The file “junk.html” couldn’t be saved using text encoding Western (ASCII)." UserInfo=0x7ffc0860b7c0 {NSFilePath=/tmp/junk.html, NSStringEncoding=1
最初可能不是很明显,但它特别提到尝试使用ASCII的事实将是解决问题根源的一个巨大线索。