Kronosinhaven

Tuesday, April 21, 2009

VFD

URL url = new URL("http://kkr.in/voteforKotH.aspx?playerID=1");
URLConnection urlConnection = url.openConnection();
urlConnection.connect();
BufferedReader br = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));

store="";
String a = "";


while ((a = br.readLine()) != null) {
store = store + a;

}

No comments:

Post a Comment