2017-09-29 83 views
-4

我想顯示信息檢索從服務器使用PHP在Android應用程序,我已經檢索到的信息與字符串與JSON格式在這裏是檢索代碼和PHP代碼。 PHP代碼如何在android studio中從字符串中提取信息?

<?php 
if($_SERVER['REQUEST_METHOD']=='POST') 
{ 

    //Getting values 
    $username = $_POST['username']; 
    require_once('dbConnect.php'); 

    $sql = "SELECT * FROM `employee` WHERE username='$username'"; 
    $result=mysqli_query($con,$sql); 
    $row = mysqli_fetch_array($result,MYSQLI_ASSOC); 
    echo json_encode($row); 
} 

的Android檢索代碼

@Override 
    protected String doInBackground(Void... params) { 
     // TODO: attempt authentication against a network service. 

     HashMap<String,String> params1= new HashMap<>(); 
     params1.put(Config.KEY_EMP_UN,mUsername); 

     RequestHandler rh = new RequestHandler(); 
     String res = rh.sendPostRequest(Config.URl_RET, params1); 
     return res; 
     // TODO: register the new account here. 
    } 

    @Override 
    protected void onPostExecute(final String success) { 
     Toast.makeText(Main2Activity.this,success,Toast.LENGTH_LONG).show(); 
     final TextView Textview1 = (TextView)findViewById(R.id.textView); 
     Textview1.setText(success); 
    } 

這檢索如下圖所示格式信息enter image description here

什麼是想要做的是提取名稱,型號,薪水,密碼並將它們顯示在單獨的TextView中。我可以這樣做嗎?

+0

谷歌的 「Android JSON」。另外,你的PHP代碼中有一個可能的SQL注入問題。 –

+0

爲什麼你不問之前搜索? –

回答

1

把你的服務器響應,並解析它像這樣

try { 
JSONObject jsonObject = new JSONObject(response); 

if (jsonObject.has("name")) { 
String name=jsonObject.getString("name"); 
} 
if (jsonObject.has("designation")) { 
String designation=jsonObject.getString("designation"); 
} 
if (jsonObject.has("salary")) { 
int salary=jsonObject.getInt("salary"); 
} 
if(jsonObject.has("password")){ 
String password=jsonObject.getString("password"); 
} 
}catch (Exception e) { 

} 
0

你解析JSON:

JSONObject jsonObject=new JSONObject(success); 
//key value for eg : name,salary etc 
// now do whatever you want to do 
jsonObject.getString("your key value"); 
0

有很多可能的重複這個問題,所以我建議你閱讀這個答案後,關閉了這個問題。

你在這裏有一個JSON響應,爲了解析JSON中的信息,你必須使用JSON解析器。像Gson,Jackson,Moshi這樣的圖書館將能夠做到這一點。

如果您使用Gson,您必須生成響應的模型類,可以使用jsonschema2pojo手動編寫或自動生成響應。一旦Gson解析你的JSON,你可以使用你的模型類獲取器來訪問數據。

教程的鏈接

https://kylewbanks.com/blog/Tutorial-Android-Parsing-JSON-with-GSON

的Youtube視頻

https://www.youtube.com/watch?v=y96VcLgOJqA

相關問題