What is the difference between the raw folder and the asset folder in Android?

Source: Internet
Author: User

* Similarities between Res/raw and assets:

1. Files in the two directories will be stored in the APK package intact after packaging, and will not be compiled into binary.


* Differences between Res/raw and assets:

1. files in RES/RAW will be mapped to R. in the Java file, the resource ID is R. id. filename; files in the assets folder will not be mapped to R. in Java, the assetmanager class is required for access.

2. Res/Raw cannot have a directory structure, while assets can have a directory structure, that is, folders can be created under the Assets Directory.

* Read File resources:

1. Read the file resources under Res/raw and get the input stream for write operations in the following ways

  • Inputstream
    Is = getresources (). openrawresource (R. Id. filename );

2. Read the file resources under assets and get the input stream for write operations in the following ways

  • Assetmanager
    AM = NULL;
  • AM
    = Getassets ();
  • Inputstream
    Is = aM. Open ("FILENAME ");

Link: http://www.cnblogs.com/leizhenzi/archive/2011/10/18/2216428.html


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.