please help me out regarding code converting into java. I have written the following code for the android user and over android i am using JSON. I want to covert the same in java and want to run on Google App engine . I have some what idea of Google app engine that how to build application on it but i am wondering about this code that how to change it without changing the code on the android
mysql_select_db($database_gpConn);
$arr = array();
$rs = mysql_query("SELECT * FROM admin");
while($obj = mysql_fetch_object($rs)) {
$arr[] = $obj;
}
echo '{"earthquakes":'.json_encode($arr).'}';
mysql_close();
Thanks