Android和PHP交互是一種常用的技術(shù),通過這種技術(shù)可以實(shí)現(xiàn)多種功能,如登錄、注冊、數(shù)據(jù)傳輸?shù)取O旅嫖覀儗⒃敿?xì)講解Android和PHP交互的過程以及如何進(jìn)行開發(fā)。
在Android和PHP交互中,需要先搭建一套PHP環(huán)境,以及一個(gè)php文件,這個(gè)文件將會(huì)接收Android端傳送來的請求,然后返回相應(yīng)的數(shù)據(jù)。下面是一個(gè)例子,我們可以新建一個(gè)test.php文件,里面可以寫入代碼:在Android端,我們可通過HttpURLConnection或者HttpClient等網(wǎng)絡(luò)框架發(fā)起post請求向php文件提交數(shù)據(jù),例如下面這個(gè)例子:
public class MainActivity extends AppCompatActivity { private String responseData; private EditText mName; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mName = (EditText) findViewById(R.id.name); Button mSendBtn = (Button) findViewById(R.id.send_btn); // 發(fā)起網(wǎng)絡(luò)請求 mSendBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { new Thread(new Runnable() { @Override public void run() { sendData(); } }).start(); } }); } private void sendData() { try { String url = "http://ip地址/test.php";// php文件所在的服務(wù)器地址 String name = mName.getText().toString(); // 發(fā)起網(wǎng)絡(luò)請求 URL mUrl = new URL(url); HttpURLConnection conn = (HttpURLConnection) mUrl.openConnection(); conn.setRequestMethod("POST"); conn.setDoInput(true); conn.setDoOutput(true); // 傳送POST請求數(shù)據(jù) OutputStream out = conn.getOutputStream(); String data = "Name=" + name;// 數(shù)據(jù)的名稱以及數(shù)值 out.write(data.getBytes()); out.flush(); out.close(); // 獲取服務(wù)器相應(yīng)數(shù)據(jù) InputStream is = conn.getInputStream(); ByteArrayOutputStream baos = new ByteArrayOutputStream(); byte[] buffer = new byte[1024]; int len = 0; while ((len = is.read(buffer)) != -1) { baos.write(buffer, 0, len); } responseData = baos.toString(); is.close(); baos.close(); // 更新UI界面 runOnUiThread(new Runnable() { @Override public void run() { Toast.makeText(MainActivity.this, responseData, Toast.LENGTH_SHORT).show(); } }); } catch (IOException e) { e.printStackTrace(); } } }通過上述代碼,我們就可以在Android中發(fā)起POST請求并傳送數(shù)據(jù)到PHP文件中,同時(shí)接收PHP文件返回的數(shù)據(jù)。 總結(jié),Android和PHP交互是一種常用技術(shù),可以實(shí)現(xiàn)多種功能,如登錄、注冊、數(shù)據(jù)傳輸?shù)取R獙?shí)現(xiàn)Android和PHP的交互,需要先新建PHP文件并在Android中發(fā)起一個(gè)POST請求,向php文件傳送數(shù)據(jù)并接收服務(wù)器返回的數(shù)據(jù)。了解這些基礎(chǔ)知識,對于我們進(jìn)行Android和PHP交互的開發(fā)將大有幫助。