To read a file from a standard internet connection protocol, just create a new java.net.URL and access its openStream() method:
import java.io.InputStream; import java.net.URL; String url = "http://www.yoursite.com/filename.html"; InputStream s = new URL(url).openStream(); ...then just read it like a normal IO stream (one of the read() methods) How to do the search is a much more complicated, general question probably not suitable specifically to the Android forums -- do you have more specifics about how the search will work? --Ben On Sep 16, 8:22 pm, MarQuel Middleton <[email protected]> wrote: > Hello im trying to make a application where you can search for > something and download load it.... for example i want it to be > connected to my website and you can type one of my ROM names and it > will show a list view of all my ROMs or themes then i can select one > and download it --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

