Two Methods for Embedded resource files in Android Projects

Source: Internet
Author: User

Method 1

Stored in the res/raw directory. For example, a binary file of cwj. dat can be read directly. Copy codeThe Code is as follows: InputStream is = context. getResources (). openRawResource (R. raw. cwj );

Method 2

The assets folder in the root directory of the project, for example, assets/cwj. dat. The following code is used:Copy codeThe Code is as follows: AssetManager am = context. getAssets ();
InputStream is = am. open (cwj. dat );

Here, Android123 prompts you that there is a bug in Google's Android system processing Assert. In AssertManager, you cannot process a single file larger than 1 MB. Otherwise, an exception is reported. You can test and upload a slightly larger file, we mentioned in our article two years ago that the first raw file can be 4 MB without this limit.

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.