Hello all i am hoping to find a tutorial that covers the way to a
connect to a mysql database online. could anyone shoot me some links
or a source file for my personal learning use thanks.

also i would like to connect to a text file throught a ftp server and
get each line one by one the problem is that my app does not connect
to the text file and i dont know how to get each line on a text file
for example,

1.Text Text Text
2.Text Text Text


           FileInputStream InputFile = new FileInputStream("http://
www.mypage.com/app/file.txt");

           InputStreamReader isr = new InputStreamReader(InputFile);
            char[] inputBuffer = new char[255];

            isr.read(inputBuffer);
            String readString = new String(inputBuffer);


            isr.close();
            return readString;

. On java its Object.Readline() but the sdk doesn't not specify how it
get the line or maybe i don't understand thanks

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to