美文网首页
ios开发中,读写文件

ios开发中,读写文件

作者: 多啦A梦的百宝袋 | 来源:发表于2016-08-15 13:20 被阅读81次

    NSString *file = @"/Users/onlyou1991/Desktop/11.txt”;

    //读取文件成字符串

    NSString *dataStr = [[NSString alloc]initWithContentsOfFile:file encoding:NSUTF8StringEncoding error:nil];

    //以回车换行分割字符串

    NSArray *aryStr = [dataStr componentsSeparatedByString:@"\r\n”];

    //将字符串str写入到文件中

    [str writeToFile:file2 atomically:YES];

    相关文章

      网友评论

          本文标题:ios开发中,读写文件

          本文链接:https://www.haomeiwen.com/subject/nzsusttx.html