[android-developers] Re: \n Does NOT work ?

2011-11-01 Thread melis
I'm looking at it in Windows system. On Oct 28, 6:16 pm, Studio LFP studio@gmail.com wrote: \n works if you are on a Unix based system. If you are using a Windows (DOS) based system, you'll want to use \r\n. Are you looking at your file in an text editor like notepad on a Windows system?

[android-developers] Re: \n Does NOT work ?

2011-11-01 Thread melis
and \r\n worked by the way. Thank you so much. On Oct 28, 6:16 pm, Studio LFP studio@gmail.com wrote: \n works if you are on a Unix based system. If you are using a Windows (DOS) based system, you'll want to use \r\n. Are you looking at your file in an text editor like notepad on a

[android-developers] Re: \n Does NOT work ?

2011-11-01 Thread melis
Hello, i tried your advise but i get this (z: 8.121132brtime: 2.862953E12) output. On Oct 30, 2:57 am, adithya holla adithyaho...@gmail.com wrote: try br -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] Re: \n Does NOT work ?

2011-10-31 Thread Belvedere Computer Services
// use everywhere for \n as it will convert to whatever platform the code // is running on static final String LINE_ENDING = System.getProperty(line.separator); On Oct 28, 4:43 pm, melis melisoner2...@gmail.com wrote: Hello, i'm using \n but it does not create a new line? Is there anyone knows

Re: [android-developers] Re: \n Does NOT work ?

2011-10-30 Thread adithya holla
try br -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options,

[android-developers] Re: \n Does NOT work ?

2011-10-28 Thread Studio LFP
\n works if you are on a Unix based system. If you are using a Windows (DOS) based system, you'll want to use \r\n. Are you looking at your file in an text editor like notepad on a Windows system? Steven Studio LFP http://www.studio-lfp.com On Friday, October 28, 2011 4:43:17 PM UTC-5, melis