Skip to main content

How to Import file from external storage - Android Tutorial

In this example, we can see how to import the file in external location. Fetching the data from that file and show it in Log-cat as well as in List-view. 




This simple example, contains one button (Click to import from SD card) to access the file data from an external location.

Now follow the coding to develop this simple application  

Create a New Project

1. activity_main.xml

<RelativeLayout 
xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"   
android:layout_width="match_parent"    
android:layout_height="match_parent"    android:paddingBottom="@dimen/activity_vertical_margin"    android:paddingLeft="@dimen/activity_horizontal_margin"    android:paddingRight="@dimen/activity_horizontal_margin"    android:paddingTop="@dimen/activity_vertical_margin"    tools:context="com.example.readfile.MainActivity" >
<Button        
android:id="@+id/btnclick"        
android:layout_width="wrap_content"        
android:layout_height="wrap_content"        
android:text="@string/click" />    
<View        
ndroid:id="@+id/viewid"       
 android:layout_width="match_parent"        
android:layout_height="10dp"       
 android:layout_below="@+id/btnclick"        
android:background="#7FFF00" />    
<ListView        
android:id="@+id/name_list"        
android:layout_width="wrap_content"        
android:layout_height="wrap_content"        
android:layout_below="@+id/viewid" >    
</ListView>
</RelativeLayout>

2. MainActivity.java


public class MainActivity extends Activity {

Button click;
ArrayList<String> array;
ListView lv;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

click = (Button) findViewById(R.id.btnclick);
lv = (ListView) findViewById(R.id.name_list);

click.setOnClickListener(new OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
try {
String state = Environment.getExternalStorageState();
if (!(state.equals(Environment.MEDIA_MOUNTED))) {
Toast.makeText(null, "There is no sd card",
Toast.LENGTH_LONG).show();
} else {
File sdcard = Environment.getExternalStorageDirectory();
File file = new File(sdcard, "/Names/Names");
BufferedReader br = new BufferedReader(new FileReader(
file));
                                               String st = "";
array = new ArrayList<String>();
while ((st = br.readLine()) != null) {
Log.e("", "" + st);
array.add(st);
Log.e("ARRAY", "" + array);
}
setlist(array);
}

} catch (Exception e) {
Log.e("", "" + e);
}
}

});
}

private void setlist(ArrayList<String> array2) {
// TODO Auto-generated method stub

ArrayAdapter<String> arrayAdapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, array2);
lv.setAdapter(arrayAdapter);

}
}

3. Manifest

Finally give permission to access from external storage

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" >


When touch/click the button, the values from the file in the given path in external storage will get read. 

Below image illustrates the file in an external storage from which we have to get values.


Output 



__________________________________________________________________

Source code for this application ImportFilefromExternalStorage.zip

                                                Happy Coding...

Comments

Popular posts from this blog

Get Phone Number from Contact List - Android Tutorial

When you create an application to send sms or an application to make calls, getting a destination number from the contacts list is a common task. In this Android tip, I am going to show the code to fetch a number from the contacts list. Now let me tell you how to achieve the goal. First, you need to create an Intent object for the PICK_ACTION action. To open the contacts list, the table that contains the contacts information must be specified as a parameter of the constructor of the Intent class. You can refer to the table using ContactsContract.Contacts.CONTENT_URI. Then call the startActivityForResult () method passing the Intent object and request code to open the contacts list. After a contact is selected from the contacts list, to get the result, you need to override the onActivityResult(int reqCode, int resultCode, Intent data) method of the activity. You can call the getData() method of the data parameter to get the table or uri that contains the selected contact. From the t

Spinner with Search on DropDown - Android Tutorial

If you have more values on Dropdown of Spinner its hard to select the last item by making a long scroll. To overcome this issue Android introduced a component called  AutoCompleteTextView Yes it is!!! Then why Spinner with Search? There may be some requirement even though gave much knowledge about it. There is a simple and good library that helps us to achieve this -  SearchableSpinner Gradle dependencies {     ...     implementation 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1' } Usage Now replace your Normal Android Spinner on XML with the following < com.toptoche.searchablespinnerlibrary.SearchableSpinner     android:id="@+id/id_city"     android:layout_width="match_parent"     android:layout_height="wrap_content"     android:background="@android:color/transparent"     android:padding="5dp" /> ___________________________________________________________

Set Focus on Spinner when select Item on Vertical Scroll - Android Tutorial

We may face an issue on Spinner lies on long vertical scroll, (i.e.) when selected and item from dropdown the focus moves to top of scroll. To avoid this please follow this piece of code spinner.setFocusableInTouchMode( true ); spinner.setOnFocusChangeListener( new View.OnFocusChangeListener() {     @Override     public void onFocusChange(View v, boolean hasFocus) {         if (hasFocus) {             if (spinner.getWindowToken() != null ) {                 spinner.performClick();             }         }     } });   _______________________________________________________________________________ Happy Coding...