Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread venu reddy
Thankqqq guys,, I got my solution... Due to Small miss understanding problem , i could not get the solution ... Now i got .. thnkaq very much , i never forget u guys support... thanks a lot... On Mon, Jan 9, 2012 at 4:47 PM, skink wrote: > > > Mukesh Srivastav wrote: > > @PSKink: if you pla

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread skink
Mukesh Srivastav wrote: > @PSKink: if you planned to use the ExternalStorage or InternalStorage > would returns the url path of the SDCard or the phone internal space > respectively. but as per my understanding, The user (who posted Venu), > wants to save the xml with in Application, like we the

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread Mukesh Srivastav
@PSKink: if you planned to use the ExternalStorage or InternalStorage would returns the url path of the SDCard or the phone internal space respectively. but as per my understanding, The user (who posted Venu), wants to save the xml with in Application, like we the way we create the customize prope

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread skink
venu reddy wrote: > Ya ya .. I think so u guys afraid about my code ... > > actually want to save in xml file in sd card .. I knew ...\ start with this: http://developer.android.com/reference/android/os/Environment.html#getExternalStorageDirectory() pskink -- You received this message becau

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread venu reddy
Ya ya .. I think so u guys afraid about my code ... actually want to save in xml file in sd card .. I knew ...\ But temporary purpose and testing purpose I saved in my local machine . seems its not possible ,,, sorry for share wrong information... thanks for giving feedback... I accept u guys

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread skink
Mukesh Srivastav wrote: > OMG, you guys need to use AssetManager class, that might help. > > On Mon, Jan 9, 2012 at 2:53 PM, skink wrote: > OMG, you need to learn how and whom you are replying to, that might help. pskink -- You received this message because you are subscribed to the Google G

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread Mukesh Srivastav
OMG, you guys need to use AssetManager class, that might help. On Mon, Jan 9, 2012 at 2:53 PM, skink wrote: > > > venu reddy wrote: > > Thankq for your quick response..but Not working, > > AM using below code in android applciation... > > > > FileOutputStream fOut = > > > openFileOutput("C:/Bar

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread skink
venu reddy wrote: > Thankq for your quick response..but Not working, > AM using below code in android applciation... > > FileOutputStream fOut = > openFileOutput("C:/Barcodenewworkspace1/RestApp/res/xml/myxml.xml",MODE_WORLD_READABLE); C:/ ??? Where did you see a path starting with C:/ on any

Re: [android-developers] Store XML file into the Resource folder

2012-01-09 Thread venu reddy
Thankq for your quick response..but Not working, AM using below code in android applciation... FileOutputStream fOut = openFileOutput("C:/Barcodenewworkspace1/RestApp/res/xml/myxml.xml",MODE_WORLD_READABLE); OutputStreamWriter osw = new OutputStreamWriter(fOut); // Write the

Re: [android-developers] Store XML file into the Resource folder

2012-01-08 Thread android developer
just type file name without extention it will work.. few days back i had faced same issue like this. On Mon, Jan 9, 2012 at 1:23 PM, venu gopal reddy wrote: > Hi friends, > > I am getting one XML file from one web services cal. Now Just I want > to save that XML file into Resource folder (res/xm

[android-developers] Store XML file into the Resource folder

2012-01-08 Thread venu gopal reddy
Hi friends, I am getting one XML file from one web services cal. Now Just I want to save that XML file into Resource folder (res/xml/my.xml). I Tries but I could not get the solution.. Can you please help me... -- You received this message because you are subscribed to the Google Groups "Andro