Android File Operation IO Technology

Source: Internet
Author: User

    /*** Read input stream data *@paraminstream *@return     */     Public Static byte[] Read (InputStream instream)throwsexception{Bytearrayoutputstream OutStream=NewBytearrayoutputstream (); byte[] buffer =New byte[1024]; intLen = 0;  while(len = instream.read (buffer))! =-1) {outstream.write (buffer,0, Len);        } instream.close (); returnOutstream.tobytearray (); }
    /**     *      * @paramFile name *@paramFile Contents *@throwsException Information*/     Public voidSave (string fileName, String filecontext)throwsException {//Private Mode of operation: The created file can only be accessed by the application, other apps cannot access the file, and a file created in private operation mode will overwrite the contents of the original file .FileOutputStream OutStream =context.openfileoutput (FileName, context.mode_private);        Outstream.write (Filecontext.getbytes ());    Outstream.close (); }    /**     *      * @paramFile name *@paramFile Contents *@throwsException Information*/     Public voidSavetosdcard (String fileName, String context)throwsException {//Private Mode of operation: The created file can only be accessed by the application, other apps cannot access the file, and a file created in private operation mode will overwrite the contents of the original file .File File =NewFile (Environment.getexternalstoragedirectory (), fileName); FileOutputStream OutStream=Newfileoutputstream (file);        Outstream.write (Context.getbytes ());    Outstream.close (); }

Android File Operation IO Technology

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.