Android reads files under a resource file

Source: Internet
Author: User

When I was reading the file today, I suddenly thought about how to read the file if it is stored in the raw directory?

 

Note that files from resources and assets can only be read but cannot be written.

 

Read from raw files as follows:

 

Code

    Public  String getfromraw (){
Try {

Inputstreamreader inputreader = New Inputstreamreader (getresources (). openrawresource (R. Raw. test1 ));

Bufferedreader bufreader = New Bufferedreader (inputreader );

String line = "" ;
String result = "" ;

While (Line = Bufreader. Readline ()) ! = Null )
Result + = Line;
Return Result;
} Catch (Exception e ){
E. printstacktrace ();
}
}

 

Read from assets directly

 

Code

    Public  String getfromassets (string filename ){
Try {
Inputstreamreader inputreader = New Inputstreamreader (getresources (). getassets (). Open (filename ));

Bufferedreader bufreader = New Bufferedreader (inputreader );

String line = "" ;
String result = "" ;

While (Line = Bufreader. Readline ()) ! = Null )
Result + = Line;
Return Result;
} Catch (Exception e ){
E. printstacktrace ();
}
}

 

Of course, if you want to get the memory stream, you can also directly return the memory stream!

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.