OBJECTIVE-C Foundation Framework Practice--nsstring (d) __foundation

Source: Internet
Author: User
#import <Foundation/Foundation.h> int main (int argc, const char * argv[]) {@autoreleasepool {/////////
    
    Read the file;//1. local files; 2. network file;//path class NSString *string11 = @ "http://www.baidu.com";
    
    Network path, should be read according to these two methods; Nsurl *httpurl = [Nsurl urlwithstring:string11];
    Local path;
    
    
    Nsurl *localurl = [Nsurl fileurlwithpath:string11];
    NSString *httpstr = [NSString stringwithcontentsofurl:httpurl encoding:nsutf8stringencoding Error:nil];
    
    NSLog (@ "httpstr =%@", httpstr); NSString *localstr = [NSString stringwithcontentsoffile:@ "/users/chenyufeng/xcodeworkspace/nsstringdemo/
    Nsstringdemo/readme.txt "Encoding:nsutf8stringencoding Error:nil];
    
    
    NSLog (@ "localstr =%@", localstr);
    Write file NSString *string12 = @ "This is what needs to be written"; [String12 writetofile:@ "/users/chenyufeng/xcodeworkspace/nsstringdemo/nsstringdemo/readme.txt" atomically:true
    
    
    
Encoding:nsutf8stringencoding Error:nil];    
    
    
    return 0; }
}


The above method can be implemented to read files and write files.


GitHub home: https://github.com/chenyufeng1991. You are welcome to visit.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.