How to open a text file of some xyz format which is placed in the sd card in the android device
How to open a text file of some xyz format which is placed in the sd card in the android devi开发者_C百科ce, if anybody knows please help me.
File sdPath = Environment.getExternalStorageDirectory();
File textFile = new File(sdPath, "textfile.xyz")
from there use the common Java IO streams.
Check also the examples coming with the Android SDK.
精彩评论