About Paresh Mayani

Paresh Mayani is a Mobile application developer from India, having been involved in Android app development since around 3 years. He writes technical articles at TechnoTalkative. Apart from his job, he manages Google Developer Group (GDG) - Ahmedabad and has been speaker in various events.

Android – Read file from Assets

Description:

First of all, let me give you a link: AssetManager, through this class we can easily access any files lying inside the Assets directory of android application. (or any sub-folders inside the Assets directory).

Now, we can have an object of AssetManager class by using getAssets() method:

AssetManager assetManager = getAssets();  

And the rest of the procedure i have given and described by making comments in the example so now go through the full solutions provided below with the output snap.

Output:

Solution:

ReadFileAssetsActivity.java

package com.paresh.readfileasset;

import java.io.IOException;
import java.io.InputStream;

import android.app.Activity;
import android.content.res.AssetManager;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import android.widget.ImageView;
import android.widget.TextView;

/**
 * @author Paresh N. Mayani
 * @Website http://www.technotalkative.com
 */
public class ReadFileAssetsActivity extends Activity {

 /** Called when the activity is first created. */

 @Override
 public void onCreate(Bundle savedInstanceState) {

  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);

  TextView txtContent = (TextView) findViewById(R.id.txtContent);
  TextView txtFileName = (TextView) findViewById(R.id.txtFileName);
  ImageView imgAssets = (ImageView) findViewById(R.id.imgAssets);

  AssetManager assetManager = getAssets();

  // To get names of all files inside the "Files" folder
  try {
   String[] files = assetManager.list("Files");

   for(int i=0; i<files.length; i++)="" {="" txtfilename.append("\n="" file="" :"+i+"="" name=""> "+files[i]);
   }
  } catch (IOException e1) {
   // TODO Auto-generated catch block
   e1.printStackTrace();
  }

  // To load text file
        InputStream input;
  try {
   input = assetManager.open("helloworld.txt");

          int size = input.available();
          byte[] buffer = new byte[size];
          input.read(buffer);
          input.close();

          // byte buffer into a string
          String text = new String(buffer);

          txtContent.setText(text);
  } catch (IOException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
  }

  // To load image
     try {
      // get input stream
      InputStream ims = assetManager.open("android_logo_small.jpg");

      // create drawable from stream
      Drawable d = Drawable.createFromStream(ims, null);

      // set the drawable to imageview
      imgAssets.setImageDrawable(d);
     }
     catch(IOException ex) {
      return;
     }
 }
}
</files.length;>

main.xml
Note: Please consider scrollview as ScrollView, textview as TextView….etc. Its just problem inside the code plugin.

<!--?xml version="1.0" encoding="utf-8"?-->

<scrollview xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent">

<linearlayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical">

    <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/hello" android:id="@+id/txtContent">

 <imageview android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/imgAssets">

  <textview android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/txtFileName">
</textview></imageview></textview></linearlayout>

</scrollview>

Download Full source code from here: Android – Read file from Assets

Reference: Android – Read file from Assets from our JCG partner Paresh N. Mayani at the TechnoTalkative blog.

Share and enjoy!
  • http://www.technotalkative.com/ Paresh Mayani

    Thanx for sharing :)

  • http://www.facebook.com/mostafa.elgendy.1422 Mostafa Elgendy

    i need to read jar file like you read text file and image how to do that?

    • http://www.technotalkative.com/ Paresh Mayani

      Is Jar file readable?

  • ANKIT THAKUR

    1) can we delete the asset folder file at run time programtically



© 2010-2012 Java Code Geeks. Licenced under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
All trademarks and registered trademarks appearing on Java Code Geeks are the property of their respective owners.
Java is a trademark or registered trademark of Oracle Corporation in the United States and other countries.
Java Code Geeks is not connected to Oracle Corporation and is not sponsored by Oracle Corporation.