iOS怎样通过Objective-C解析Excel

iOS怎样通过Objective-C解析Excel,第1张

// ViewController.m

// PRJ_excelDemo

//

// Created by wangzhipeng on 13-4-12.

// Copyright (c) 2013年 com.comsoft. All rights reserved.

//

#import "ViewController.h"

@interface ViewController ()

@property (strong, nonatomic) IBOutlet UIWebView *pWV_main

@end

@implementation ViewController

- (void)viewDidLoad

{

[super viewDidLoad]

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

[_pWV_main setClipsToBounds:YES]

[_pWV_main setScalesPageToFit:YES]

//Document路径

// NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)

// NSString *documentsDirectory = [paths objectAtIndex:0]

//项目路径下

NSString *path = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"wangzhipeng.xlsx"]

NSURL *url = [NSURL fileURLWithPath:path]

NSURLRequest *request = [NSURLRequest requestWithURL:url]

[_pWV_main loadRequest:request]

}

- (void)didReceiveMemoryWarning

{

[super didReceiveMemoryWarning]

// Dispose of any resources that can be recreated.

}

@end

问题是我目前开发的项目需求是获取.xlsx中的内容

于是我想起来了,UIWebView能加载说明它获取到了.xlsx内容,我就想通过JS来获取UIWebView的内敏简容

NSString *pStr_js = @"document.documentElement.innerHTML"

NSString *pStr_html = [_pWV_main stringByEvaluatingJavaScriptFromString:pStr_js]

NSLog(@"%@", pStr_html)

我在谷歌上搜查了半天,但我似乎无法找到通过Objective-C来读取Excel文件的方法。

我觉得唯一的可行的解决方案是Excel先转换为CSV,然后读取一个文本文件,但我不希望出现这种情况,太麻烦。

解决方案:

最后桥乱裤在 StackOverFlow的问题 从这个问题中找寻的相关解决方法,用到的 libxls 库和 DHlibxls 框架。

主要是 DHlibxls ,个人认为是最底层是libxls库,而DHlibxls对libxls 进行了一次封装陪雹,使得在IOS中更好用了。

以下是相关的DHlibxls 的下载,DHlibxls这个是已经把libxls 库添加到该项目中了,可以直接点击

TestDHlibxls.xcodeproj 查看使用方法 .

iOS中plist的创建,数据写入与读取功能创建一个test.plist文件,textInput作为输入,displayLabel作为显示,有一个按钮来触发保持程序triggerStorage;-(void)triggerStorage{displayLabel.text=textInput.textNSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)NSString*path=[pathsobjectAtIndex:0]NSString*filename=[pathstringByAppendingPathComponent:@"test.plist"]//获取路径NSDictionary*dic2=[NSDictionarydictionaryWithContentsOfFile:filename]//读取数据NSLog(@"dic2is:%@",dic2)//创建一个dic,写到plist文件里庆举NSDictionary*dic=[NSDictionarydictionaryWithObjectsAndKeys:displayLabel.text,@"IP",nil]//写入数据[dicwriteToFile:filenameatomically:YES]}//ImplementviewDidLoadtodoadditionalsetupafterloadingtheview,typicallyfromanib.-(void)viewDidLoad{NSMutableArray*resultDataNSArray*paths=NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES)NSString*path=[pathsobjectAtIndex:0]NSLog(@"path=%@",path)NSString*filename=[pathstringByAppendingPathComponent:@"誉裤碧test.plist"]//读文件NSDictionary*dic2=[NSDictionarydictionaryWithContentsOfFile:filename]NSLog(@"dicis:%@",dic2)if(dic2==nil){//1.创建一个plist文件NSFileManager*fm=[NSFileManagerdefaultManager][fmcreateFileAtPath:filenamecontents:nilattributes:nil]}else{resultData=[dic2objectForKey:@"IP"]if([dic2count]>0){displayLabel.text=resultData}else{displayLabel.text=@""}}self.navigationItem.rightBarButtonItem=[[[UIBarButtonItemalloc]//纯孙按钮的初始化及触发条件设置initWithTitle:@"保存"style:UIBarButtonItemStylePlaintarget:selfaction:@selector(triggerStorage)]autorelease][superviewDidLoad]}

NSArray *array = [[NSBundle mainBundle] pathsForResourcesOfType:@"jpg" inDirectory:@"image"]

NSLog(@"array:%@",array)

首先需要在mac上新建一个文件夹叫image, 放一些图片进去,然后把整个文件夹拖到项目中,在d出的对话早扒框中选择:Create folder references for any added folders ,这个会创建一个真实的目录,闭睁码否则找到不这个目录下的文件

家目录下共有四个子目录:

Documents 目录:您应该将所有的应用程序数据文件写入到这个目录下。这个目录用于存储用户数据或其它应该定期备份的信息。

AppName.app 目录:这是应用程序的程序包目录,包含应用程序的本身。由于应用程序必须经过签名,所以您在运行时不能对这个目录中的内容进行修改,否则可能会使应用程序无法启动。

Library 目录:这个目录下有两个子目录:Caches 和 Preferences

Preferences 目录包含应用程序的偏好设置文件。您不应该直接创建偏好设置文件,而是应该使用NSUserDefaults类来取得和设置应用程序的偏好

Caches 目录用于存放应用程序专用的支持文件,保存应用程序再次启动过程中需要的信息。

tmp 目录:这个目录用于存放临时文件,保存应用程序再次启动过程中不需要的信息。

获取这些目录路径的方法:

1,获取家目录路径的函数:

NSString *homeDir = NSHomeDirectory()

2,获取Documents目录路径的方法:

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)

NSString *docDir = [paths objectAtIndex:0]

3,获取Caches目录路径的方法:

NSArray*paths=NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES)

NSString *cachesDir = [paths objectAtIndex:0]

4,获取tmp目录路径的方法:

NSString *tmpDir = NSTemporaryDirectory()

5,获取应用程序程序包中资源文件路径的方法:

例如获取程序包中一个图片资源(apple.png)路径的方法:

NSString *imagePath = [[NSBundle mainBundle] pathForResource:@”apple” ofType:@”png”]

UIImage *appleImage = [[UIImage alloc] initWithContentsOfFile:imagePath]

代码中的mainBundle类方法用于返回一个代表应用程序包的对象。

文件轿哪IO

1,将数据写到Documents目录:

- (BOOL)writeApplicationData:(NSData *)data toFile:(NSString *)fileName {

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)

NSString *docDir = [paths objectAtIndex:0]if (!docDir) { NSLog(@”Documents directory not found!”)return NO}

NSString *filePath = [docDir stringByAppendingPathComponent:fileName]

return [data writeToFile:filePath atomically:YES]}

2,从Documents目录读取数据:

- (NSData *)applicationDataFromFile:(NSString *)fileName {

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)

NSString *docDir = [paths objectAtIndex:0]

NSString *filePath = [docDir stringByAppendingPathComponent:fileName]

NSData *data = [[[NSData alloc] initWithContentsOfFile:filePath] autorelease]return data}

NSSearchPathForDirectoriesInDomains这个主要就是返回一个绝对路径用来存放我们需要储存的文件。

- (NSString *)dataFilePath {

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)

NSString *documentsDirectory = [paths objectAtIndex:0]

return [documentsDirectory stringByAppendingPathComponent:@"shoppingCar.plist"]

}

NSFileManager* fm=[NSFileManager defaultManager]

if(![fm fileExistsAtPath:[self dataFilePath]]){

//下面是对该文件进行制定路径的保存

[fm createDirectoryAtPath:[self dataFilePath] withIntermediateDirectories:YES attributes:nil error:nil]

//取得一个目录下得所有文件名

NSArray *files = [fm subpathsAtPath: [self dataFilePath] ]

//读取某个文件

NSData *data = [fm contentsAtPath:[self dataFilePath]]

//或者

NSData *data = [NSData dataWithContentOfPath:[self dataFilePath]]

}


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/12211472.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-21
下一篇 2023-05-21

发表评论

登录后才能评论

评论列表(0条)

保存