zoukankan      html  css  js  c++  java
  • iOS获取文件路径

    文件在工程的存放结构

     

    具体代码如下:

    //文件路径
    NSBundle *bundle = [NSBundle bundleForClass:[PopQuestionUIView class]];
    NSURL *url = [bundle URLForResource:@"Resources" withExtension:@"bundle"];
    NSBundle *resBundle = [NSBundle bundleWithURL:url];
    NSString *filePath = [resBundle pathForResource:@"popQuestionLocalData" ofType:@"txt"];
    
    // NSData类方法读取数据
    NSData *data = [NSData dataWithContentsOfFile:filePath];
    NSString *jsonString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
    NSLog(@"NSData类方法读取的内容是:%@", jsonString);
        
    NSData *jsonData = [jsonString dataUsingEncoding:NSUTF8StringEncoding];
    NSError *err;
    NSDictionary *dic = [NSJSONSerialization JSONObjectWithData:jsonData
                                                            options:NSJSONReadingMutableContainers
                                                              error:&err];
    

      

     

  • 相关阅读:
    有关云计算的思考
    转载:args build and execute command lines from standard input
    云计算时代来临
    How to check the service availble
    反射小结
    JOptionPane用法java
    eclipse快捷键调试总结
    javascript 控制 html元素 显示/隐藏
    "ORA00054: 资源正忙, 但指定以 NOWAIT 方式获取资源, 或者超时失效"的快速解决方法
    麻辣豆腐与编码
  • 原文地址:https://www.cnblogs.com/hacjy/p/6007226.html
Copyright © 2011-2022 走看看