[android-developers] Re: How to open .ifc file in an activity?

2014-01-15 Thread Abhishek Kumar Gupta
I am able to get the read the data from .ifc file in the form text with the help of below code: InputStream XmlFileInputStream = getResources().openRawResource(R.raw.sample); // getting IFC String sIfc = readTextFile(XmlFileInputStream); public String readTextFile(InputStream

[android-developers] Re: How to open .ifc file in an activity?

2014-01-15 Thread Abhishek Kumar Gupta
I am able to read the data from .ifc file in the form of text with the help of below code: InputStream XmlFileInputStream = getResources(). openRawResource(R.raw.sample); // getting IFC String sIfc = readTextFile(XmlFileInputStream); public String readTextFile(InputStream inputStream)