首页

源码搜藏网

首页 > 开发教程 > 手机开发 >

Android中通过json向MySql中读写数据的方法(二)

创建时间:2016-05-12 11:50  

首先 要定义几个解析json的方法parseJsonMulti,代码如下:

 

[java] view plain copy
 
  1. private void parseJsonMulti(String strResult) {     
  2.         try {     
  3.   
  4.             Log.v("strResult11","strResult11="+strResult);  
  5.               
  6.              int index=strResult.indexOf("[");  
  7.                 if(index>0)  
  8.                     strResult=strResult.substring(index, strResult.length());   
  9.                   
  10.                 Log.v("strResult22","strResult22="+strResult);  
  11.                 wifiMapData = new JSONArray(strResult);  
  12.                   
  13.                 Log.v("wifiMapDataLength",""+wifiMapData.length());  
  14.                   
  15.             for(int i = 0; i < wifiMapData.length() ; i++){///基站信息处理  
  16.                 ///MapData m=new MapData(1, dLat[5], dLong[5], 10, 20, 300, 500, 105, "教1", 1, 1, 4);  
  17.                   
  18.               
  19.                 JSONObject jsonObject = wifiMapData.getJSONObject(i);  
  20.           
  21.                  int id=Integer.parseInt(jsonObject.getString("id"));   //id  
  22.               
  23.                 // if(jsonObject.isNull("mac_address")) mac_address="";  
  24.                  String mac_address = jsonObject.getString("mac_address");//wifi的mac地址    
  25.                    
  26.                  String wifi_name=jsonObject.getString("wifi_name");    //ssid  
  27.                   
  28.                    
  29.                  if(!jsonObject.isNull("lat")&&!jsonObject.isNull("lon")){  
  30.                   
  31.                   lat= Double.valueOf(jsonObject.getString("lat"));//纬度  
  32.                    
  33.                   lon=Double.valueOf(jsonObject.getString("lon"));//经度  
  34.                     
  35.                  }  
  36.                  String location_name=jsonObject.getString("location_name");    //ssid  
  37.                   
  38.                  String wifi_adds = jsonObject.getString("wifi_adds");//wifi地址 具体到多少路多少号  
  39.                   
  40.                  String area = jsonObject.getString("area");//北京的什么区  
  41.               
  42.                  String location_type = jsonObject.getString("location_type");//地点是个什么类型的,写字楼??  
  43.               
  44.                  String ap_free = jsonObject.getString("ap_free");//ap是否免费  
  45.                   
  46.                  String category = jsonObject.getString("category");//ap是否免费  
  47.                    
  48.                  String password = jsonObject.getString("password");//ap是否免费      
  49.                    
  50.                  String capabilities = jsonObject.getString("capabilities");//ap是否免费      
  51.                    
  52.                  String user_score = jsonObject.getString("user_score");//ap是否免费      
  53.                   
  54.                  String NW_score = jsonObject.getString("NW_score");//ap是否免费      
  55. }     
  56.            // tvJson.setText(s);     
  57.         } catch (JSONException e) {     
  58.             System.out.println("Jsons parse error !");     
  59.             e.printStackTrace();     
  60.         }     
  61.     }     

再定义一个向MySql发送http请求的方法connServerForResult,代码如下:
[java] view plain copy
 
  1. private String connServerForResult(String strUrl) {     
  2.         // HttpGet对象     
  3.         HttpGet httpRequest = new HttpGet(strUrl);     
  4.         String strResult = "";     
  5.         try {     
  6.             // HttpClient对象     
  7.             HttpClient httpClient = new DefaultHttpClient();     
  8.             // 获得HttpResponse对象     
  9.             HttpResponse httpResponse = httpClient.execute(httpRequest);     
  10.             if (httpResponse.getStatusLine().getStatusCode() == HttpStatus.SC_OK) {     
  11.                 // 取得返回的数据     
  12.                 strResult = EntityUtils.toString(httpResponse.getEntity());     
  13.             }     
  14.         } catch (ClientProtocolException e) {   
  15.               
  16.             Toast.makeText(Setting.this,  
  17.                     "protocol error", Toast.LENGTH_SHORT).show();  
  18.             
  19.             e.printStackTrace();     
  20.         } catch (IOException e) {     
  21.             Toast.makeText(Setting.this,  
  22.                     "IO error", Toast.LENGTH_SHORT).show();  
  23.              
  24.             e.printStackTrace();     
  25.         }     
  26.         return strResult;     
  27.     }     
  28.       
然后就是在主程序中调用这两个方法:代码如下
[java] view plain copy
 
  1. String strUrl1 = "http://192.168.1.2/call_for_wifiMapData.php";  
  2.                             //获得返回的Json字符串     
  3.                             String strResult1 = connServerForResult(strUrl1);   
  4.                               
  5.                             Log.v("strResult1",strResult1);  
  6.                               
  7.                             parseJsonMulti(strResult1);  
只有几句话而已,php同样要替换成你自己的文件路径,

 

php代码如下:

[php] view plain copy
 
  1. <php   
  2.   
  3.     $jsonArrayString = $_POST["jsonArrayString"];     
  4.     $jsonString = $_POST["jsonString"];   
  5.     $objArray=json_decode($jsonArrayString,true);     
  6.     $obj=json_decode($jsonString);   
  7.     $lon = (float)$obj->lon;  
  8.     $lat = (float)$obj->lat;  
  9.     $distance=(float)$obj->distance;   
  10.     if($lat==null||$lat==0){  
  11.     $lat=39.990132;  
  12.     $lon=116.332224;  
  13.     $distance=100000;  
  14.       
  15.     }  
  16.   
  17.     ////将cell表中与点(lat,lon)距离小于distance的点打包回来  
  18.       
  19.     $con = mysql_connect("localhost","root",null);  
  20.     if (!$con) {  
  21.         die('Could not connect:'.mysql_error() );  
  22.     }  
  23.   
  24.     mysql_select_db("a0722152915"$con);  
  25.     mysql_query("set names 'utf8'");   
  26.     $sqlfind = "select * from `wifi`";  
  27.     $resultFind = mysql_query($sqlfind$con);  
  28.     $length=mysql_num_rows($resultFind);  
  29.   
  30.     $arr=array();  
  31.     $j=0;  
  32.     for($i=0;$i<$length;$i++)  
  33.     {  
  34.         $row = mysql_fetch_array($resultFind);  
  35.   
  36.         $arr[$j]['id'] = $row['id'];  
  37.         $arr[$j]['mac_address']=$row['mac_address'];  
  38.         $arr[$j]['wifi_name']=$row['wifi_name'];      
  39.         $arr[$j]['lat']=$row['gps_lat'];  
  40.         $arr[$j]['lon']=$row['gps_lon'];  
  41.         $arr[$j]['location_name']=$row['location_name'];  
  42.         $arr[$j]['wifi_adds']=$row['wifi_adds'];  
  43.         $arr[$j]['area']=$row['area'];  
  44.         $arr[$j]['location_type']=$row['location_type'];  
  45.         $arr[$j]['ap_free']=$row['ap_free'];  
  46.         $arr[$j]['category']=$row['category'];  
  47.         $arr[$j]['password']=$row['password'];  
  48.         $arr[$j]['capabilities']=$row['capabilities'];  
  49.         $arr[$j]['user_score']=$row['user_score'];  
  50.         $arr[$j]['NW_score']=$row['NW_score'];  
  51.           
  52.         $j++;  
  53.           
  54.           
  55.     }  
  56.       
  57.     //print_r($arr);\                     
  58.     echo  json_encode($arr);  
  59.       
  60.   
  61.       
  62.       
  63.       
  64. >  
[php] view plain copy
 
  1. 还有一点需要注意,就是如果你的终端上的操作系统是android4.0以上的,要添加上那一段代码,上一篇有写,这里略过  
[php] view plain copy
 
  1.   
如此一来,可以从MySql中成功地将数据读取下来
上一篇:android+json+php+mysql实现用户反馈功能
下一篇:Android中通过json向MySql中读写数据的方法

相关内容

热门推荐