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;
}
procedure in mysql
17 years ago

No comments:
Post a Comment