我们正在尝试在UIWebview中打开受密码保护的PDF / DOC文件。出于安全考虑,我们只能从服务器检索文件并存储到内存中(即NSData),但不能存储为文件。
我们尝试在UIWebiew中使用loaddata函数,只有在没有密码保护的情况下加载doc / xls / ppt / pdf才能成功。
对于带有密码的doc / xls文件,它显示"无法读取文档。操作无法完成(QuickLookErrorDomain错误44820/912"。请问我们如何在UIWebview中打开文件?
对于带密码的pdf文件,它显示"文件"空白"受密码保护"。请问我们怎样才能显示正确的文件名而不是"空白"?
我还搜索了cgpdf并知道如何将pdf文件解锁为CGPDFDocumentRef,但无法找到将其更改回NSData并直接输入UIWebview的方法。
感谢。
答案 0 :(得分:1)
将文件写入本地并读取数据并在Web视图中显示
//convert file data(ie : NSData) as string
NSData *fileData;//This is the data from your request
NSString *fileString = [[NSString alloc] initWithData:fileData encoding:NSUTF8StringEncoding];
//get the file path
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *filePath = [[paths objectAtIndex:0] stringByAppendingPathComponent:@"sample.pdf"];
//Save as file
NSError *error;
BOOL hasFileWritten = [fileString writeToFile:filePath atomically:YES encoding:NSUTF8StringEncoding error:&error];
if(!hasFileWritten)
{
NSLog(@"Write file error: %@", error);
}
//open pdf in webview
NSURL *targetURL = [NSURL fileURLWithPath:filePath];
NSURLRequest *request = [NSURLRequest requestWithURL:targetURL];
[webView loadRequest:request];
<强>更新强> 无需在本地写入文件数据,在内存中处理数据并在webview中显示pdf文件
@interface ViewController ()
{
IBOutlet UIWebView *webView;
CATiledLayer *tiledLayer;
CGPDFPageRef pageRef;
}
@end
CGPDFDocumentRef pdf = CGPDFDocumentCreateWithURL((CFURLRef)url);
BOOL success = CGPDFDocumentUnlockWithPassword(pdf, "test");
if(success)
{
pageRef = CGPDFDocumentGetPage(pdf, 1);
CGRect pageRect = self.view.frame;
tiledLayer = [CATiledLayer layer];
tiledLayer.delegate = self;
tiledLayer.tileSize = CGSizeMake(1024.0, 1024.0);
tiledLayer.levelsOfDetail = 1000;
tiledLayer.levelsOfDetailBias = 1000;
tiledLayer.frame = pageRect;
UIView *contentView = [[UIView alloc] initWithFrame:pageRect];
[contentView.layer addSublayer:tiledLayer];
[webView addSubview:contentView];
}
- (void)drawLayer:(CALayer *)layer inContext:(CGContextRef)ctx
{
CGContextSetRGBFillColor(ctx, 1.0, 1.0, 1.0, 1.0);
CGContextFillRect(ctx, CGContextGetClipBoundingBox(ctx));
CGContextTranslateCTM(ctx, 0.0, layer.bounds.size.height);
CGContextScaleCTM(ctx, 1.0, -1.0);
CGContextConcatCTM(ctx, CGPDFPageGetDrawingTransform(pageRef, kCGPDFCropBox, layer.bounds, 0, true));
CGContextDrawPDFPage(ctx, pageRef);
}
答案 1 :(得分:0)
要解锁受保护的PDF文件,您必须使用CGPDFDocument
然后使用CGPDFDocumentUnlockWithPassword您可以解锁文件,UIWebView更简单,但您的案例需要CGPDFDocument
这里有一个library可能对你有用