把word转成html再显示在UIWebView里

简介:

把word转成html再显示在UIWebView里

-(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webView
{
    NSString *path = [[NSBundle mainBundle] pathForResource:documentName ofType:nil];
    NSURL *url = [NSURL fileURLWithPath:path];
    NSURLRequest *request = [NSURLRequest requestWithURL:url];
    [webView loadRequest:request];
}

// Calling -loadDocument:inView:
[self loadDocument:@"test.doc" inView:self.myWebview]; 



////


- (void)viewDidLoad {

    [super viewDidLoad];

    

    [self loadDocument:@"webceshi.docx" inView:self.uiweb];

    

    _uiweb.scalesPageToFit = YES;

    // Do any additional setup after loading the view, typically from a nib.

}

-(void)loadDocument:(NSString*)documentName inView:(UIWebView*)webView

{

    NSString *path = [[NSBundle mainBundlepathForResource:documentName ofType:nil];

    NSURL *url = [NSURL fileURLWithPath:path];

    NSURLRequest *request = [NSURLRequest requestWithURL:url];

    [webView loadRequest:request];

    

    

}


一、使用UIWebView 将web content 嵌入到应用上。

API提供了三种方法:

- (void)loadRequest:(NSURLRequest *)request;  

- (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)baseURL;  

- (void)loadData:(NSData *)data MIMEType:(NSString *)  
MIMEType textEncodingName:(NSString *)textEncodingName baseURL:(NSURL *)baseURL; 
1、直接给出url地址即可将web content载入。

NSString *path = @"http://theo2life.com";  
NSURL *url = [[NSURL alloc] initWithString:path];  
[self.webView loadRequest:[NSURLRequest requestWithURL:url]]; 
2、将本地html文件内容嵌入webView

NSString *resourcePath = [ [NSBundle mainBundle] resourcePath];  
NSString *filePath = [resourcePath stringByAppendingPathComponent:@"test.html"];  
NSString *htmlstring =[[NSString alloc] initWithContentsOfFile:filePath encoding:NSUTF8StringEncoding error:nil];  
[self.webView loadHTMLString:htmlstring baseURL:[NSURL fileURLWithPath: [[NSBundle mainBundle] bundlePath]]];  
如果不从html文件载入你也可以这样:

NSString *HTMLData = @"<img src=\"test2.png\" />ddd";  
[self.webView loadHTMLString:HTMLData baseURL:[NSURL fileURLWithPath: [[NSBundle mainBundle] bundlePath]]];  
baseURL:[NSURL fileURLWithPath: [[NSBundle mainBundle] bundlePath]] 
这段指出HTMLData所引用的其他文件资源的基本路径,如果baseURL:nil图片信息将不会显示出来~

3、同2,更详细的给出了web content的编码方式。

二、其他操作:

如果载入的web布局大过ipad尺寸发现超出的部分会是空白,则设置webView.scalesPageToFit = YES;让web content布局适应webView。 











本文转自 卓行天下  51CTO博客,原文链接:http://blog.51cto.com/9951038/1746332,如需转载请自行联系原作者
目录
相关文章
|
7月前
使用LabVIEW打开默认应用程序中的文档(PDF,Word,Excel,Html)
使用LabVIEW的&quot;Open a Document on Disk.vi&quot;,存于&lt;LabVIEW&gt;\vi.lib\Platform\browser.llb,可让默认应用打开硬盘文档。此VI仅基础打开功能,高级控制推荐LabVIEW Report Generation Toolkit或ActiveX。注意:避免版本升级问题,最好将VI复制到vi.lib外的目录。
307 3
|
7月前
|
Java Maven
Java在线预览(word转html)--强势推荐
Java在线预览(word转html)--强势推荐
186 0
|
Java Apache
java word转html 报错org/apache/poi/xwpf/usermodel/IRunBody
java word转html 报错org/apache/poi/xwpf/usermodel/IRunBody
297 0
|
数据库
wangEditor富文本编辑器的调用开发实录2(V5版本自定义粘贴,去除复制word或网页html冗余样式代码的解决方案)
wangEditor富文本编辑器的调用开发实录2(V5版本自定义粘贴,去除复制word或网页html冗余样式代码的解决方案)
827 0
|
开发者
利用word制作html无法直接绘制的漂亮表格
利用word制作html无法直接绘制的漂亮表格
实时显示日期、时间、城市天气(HTML+JS)
实时显示日期、时间、城市天气(HTML+JS)
1064 0
实时显示日期、时间、城市天气(HTML+JS)