真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

安卓連接php數(shù)據(jù)庫實例,安卓開發(fā)php

android 手機怎么連接電腦上的數(shù)據(jù)庫,直接獲取數(shù)據(jù)庫數(shù)據(jù)

數(shù)據(jù)庫很多,但是安卓直接支持的數(shù)據(jù)庫只有sqlite一種。如果要使用其它的非本地數(shù)據(jù)庫,你得建立連接,采用webservice或http協(xié)議中轉(zhuǎn)數(shù)據(jù)。

平昌網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)公司,平昌網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為平昌千余家提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)營銷網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的平昌做網(wǎng)站的公司定做!

安卓訪問mysql里的數(shù)據(jù)得:

1)先建立網(wǎng)絡(luò),使用WIFI局域網(wǎng)

2)在PC建立數(shù)據(jù)訪問接口,編寫http協(xié)議應(yīng)用(方法非常多。 asp、php、jsp都有訪問mysql的方法),還得關(guān)掉防火墻

3)編寫安卓手機客戶端連接設(shè)備的http service

php和安卓怎么實現(xiàn)數(shù)據(jù)(如json)交互

PHP是一種創(chuàng)建動態(tài)交互性站點的服務(wù)器端腳本語言,優(yōu)勢:PHP腳本語言應(yīng)用廣泛,開源免費,最重要的是入門簡單,容易掌握。PHP能夠生成動態(tài)頁面內(nèi)容PHP能夠創(chuàng)建、打開、讀取、寫入、刪除以及關(guān)閉服務(wù)器上的文件PHP能夠接收表單數(shù)據(jù)PHP能夠發(fā)送并取回cookiesPHP能夠添加、刪除、修改數(shù)據(jù)庫中的數(shù)據(jù)PHP能夠限制用戶訪問網(wǎng)站中的某些頁面能夠運行于各種平臺,幾乎兼容所有WEB服務(wù)器,支持多種數(shù)據(jù)庫1.我們想要運行PHP,首先要有個web服務(wù)器,一般可以在本地部署一個服務(wù)器用來測試。所以需要下載個XAMPP,我們在百度搜索apache friends,直接打開第一個鏈接,然后毫不猶豫的下載最新版本(PHP7.0.9),下載后執(zhí)行安裝。2.2.現(xiàn)在來配置XAMPP來部署一個本地服務(wù)器,打開只需要啟用Apache服務(wù),下面我就啟動成功了。如果啟用不成功,Port(s)沒有數(shù)據(jù)顯示,就證明你監(jiān)聽的PC端口被占用,你可以在Config的里第一個選項進行監(jiān)聽端口的更改,找到記事本里的Listen 8080命令改后綴,這里我把監(jiān)聽端口改成空閑的8080了。3.下面來打開Dreamweaver建一個服務(wù)器站點。站點配置:本地站點文件夾一定要選擇你裝Xampp路徑的htdocs的目錄里。4.添加服務(wù)器配置:這樣站點就設(shè)置好了,然后在站點文件夾創(chuàng)建server.php,腳本如下?php //設(shè)置頁面內(nèi)容是html編碼格式是utf-8 //header("Content-Type: text/plain;charset=utf-8"); header('Access-Control-Allow-Origin:*'); header('Access-Control-Allow-Methods:POST,GET'); header('Access-Control-Allow-Credentials:true'); header("Content-Type: application/json;charset=utf-8"); //header("Content-Type: text/xml;charset=utf-8"); //header("Content-Type: text/html;charset=utf-8"); //header("Content-Type: application/javascript;charset=utf-8"); //定義一個多維數(shù)組,包含員工的信息,每條員工信息為一個數(shù)組 $staff = array ( array("name" = "喬布斯", "number" = "101", "sex" = "男", "job" = "IOS開發(fā)工程師"), array("name" = "比爾蓋茨", "number" = "102", "sex" = "男", "job" = "微軟開發(fā)工程師"), array("name" = "陳美麗", "number" = "103", "sex" = "女", "job" = "安卓開發(fā)工程師"), array("name" = "黃力", "number" = "104", "sex" = "男", "job" = "Java開發(fā)工程師"), array("name" = "車神", "number" = "105", "sex" = "男", "job" = "游戲開發(fā)工程師"), array("name" = "測試貓", "number" = "106", "sex" = "男", "job" = "web前端開發(fā)工程師") ); //判斷如果是get請求,則進行搜索;如果是POST請求,則進行新建 //$_SERVER是一個超全局變量,在一個腳本的全部作用域中都可用,不用使用global關(guān)鍵字 //$_SERVER["REQUEST_METHOD"]返回訪問頁面使用的請求方法 if ($_SERVER["REQUEST_METHOD"] == "GET") { search(); } elseif ($_SERVER["REQUEST_METHOD"] == "POST"){ create(); } //通過員工編號搜索員工 function search(){ //檢查是否有員工編號的參數(shù) //isset檢測變量是否設(shè)置;empty判斷值為否為空 //超全局變量 $_GET 和 $_POST 用于收集表單數(shù)據(jù) if (!isset($_GET["number"]) empty($_GET["number"])) { echo '{"success":false,"msg":"參數(shù)錯誤"}'; return; } //函數(shù)之外聲明的變量擁有 Global 作用域,只能在函數(shù)以外進行訪問。 //global 關(guān)鍵詞用于訪問函數(shù)內(nèi)的全局變量 global $staff; //獲取number參數(shù) $number = $_GET["number"]; $result = '{"success":false,"msg":"沒有找到員工。"}'; //遍歷$staff多維數(shù)組,查找key值為number的員工是否存在,如果存在,則修改返回結(jié)果 foreach ($staff as $value) { if ($value["number"] == $number) { $result = '{"success":true,"msg":"找到員工:員工編號:' . $value["number"] . ',員工姓名:' . $value["name"] . ',員工性別:' . $value["sex"] . ',員工職位:' . $value["job"] . '"}'; break; } } echo $result; } //創(chuàng)建員工 function create(){ //判斷信息是否填寫完全 if (!isset($_POST["name"]) empty($_POST["name"]) !isset($_POST["number"]) empty($_POST["number"]) !isset($_POST["sex"]) empty($_POST["sex"]) !isset($_POST["job"]) empty($_POST["job"])) { echo '{"success":false,"msg":"參數(shù)錯誤,員工信息填寫不全"}'; return; } //TODO: 獲取POST表單數(shù)據(jù)并保存到數(shù)據(jù)庫 //提示保存成功 echo '{"success":true,"msg":"員工:' . $_POST["name"] . ' 信息保存成功!"}'; } ? 我們可以在server.php文件數(shù)組$staff里的數(shù)據(jù)進行查詢,并且可以實現(xiàn)添加數(shù)據(jù)的功能,下面來創(chuàng)建demo.htmlstyle body,input,button,select,h1{ font-size:20px; line-height:18px; } /style script window.onload=function(){ document.getElementById("search").onclick=function(){//查詢數(shù)據(jù) //發(fā)送Ajax查詢請求并處理 var request=new XMLHttpRequest(); //open("方法(GET查詢,POST添加)","打開的文件數(shù)據(jù)",處理方式(同步為false異步為true,不填默認為true)); request.open("GET","server.php?number="+document.getElementById('keyword').value); request.send(); request.onreadystatechange=function(){ if(request.readyState===4){//當(dāng)服務(wù)器請求完成 if(request.status===200){//status==200為服務(wù)器請求成功 var data=JSON.parse(request.responseText); if(data.success){//數(shù)據(jù)填寫符合要求 document.getElementById('searchResult').innerHTML=data.msg; }else{//數(shù)據(jù)填寫不符號要求 document.getElementById('searchResult').innerHTML="出現(xiàn)錯誤:"+data.msg; } }else{//服務(wù)器請求失敗 alert("發(fā)生錯誤:"+request.status); } } } } document.getElementById("save").onclick=function(){//添加數(shù)據(jù) //發(fā)送Ajax添加數(shù)據(jù)請求并處理 var request=new XMLHttpRequest(); //open("方法(GET查詢,POST添加)","打開的文件數(shù)據(jù)",處理方式(同步為false異步為true,不填默認為true));; request.open("POST","server.php"); //定義data取得用戶所填寫的數(shù)據(jù),并且send(data)到服務(wù)器 var data="name="+document.getElementById("staffName").value +"number="+document.getElementById("staffNumber").value +"sex="+document.getElementById("staffSex").value +"job="+document.getElementById("staffJob").value; request.setRequestHeader("Content-Type","application/x-www-form-urlencoded");//在POST方法里必寫,否則添加數(shù)據(jù)不起作用 request.send(data); request.onreadystatechange=function(){ if(request.readyState===4){//當(dāng)服務(wù)器請求完成 if(request.status===200){//status==200為服務(wù)器請求成功 var data=JSON.parse(request.responseText); if(data.success){//數(shù)據(jù)填寫符合要求 document.getElementById('createResult').innerHTML=data.msg; }else{//數(shù)據(jù)填寫不符合要求 document.getElementById('createResult').innerHTML="出現(xiàn)錯誤:"+data.msg; } }else{//服務(wù)器請求失敗 alert("發(fā)生錯誤:"+request.status); } } } } } /script body h1員工查詢/h1 label請輸入員工編號:/label input type="text" id="keyword"/ button id="search"查詢/button p id="searchResult"/p h1員工創(chuàng)建/h1 label請輸入員工姓名:/label input type="text" id="staffName"/br label請輸入員工編號:/label input type="text" id="staffNumber"/br label請輸入員工性別:/label select id="staffSex" option男/option option女/option /selectbr label請輸入員工職位:/label input type="text" id="staffJob"/br button id="save"保存/button p id="createResult"/p /body 以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

如何使用JSON連接Android和PHP Mysql數(shù)據(jù)庫

Android客戶端直接連接遠程MySQL數(shù)據(jù)庫的方法如下:String result = ""; //首先使用NameValuePair封裝將要查詢的年數(shù)和關(guān)鍵字綁定 ArrayListNameValuePair nameValuePairs = new ArrayListNameValuePair(); nameValuePairs/getAllPeopleBornAfter.php"); httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs)); HttpResponse response = httpclient.execute(httppost); HttpEntity entity = response.getEntity(); InputStream is = entity.getContent(); }catch(Exception e){ Log.e("log_tag", "Error in http connection "+e.toString()); } //將HttpEntity轉(zhuǎn)化為String try{ BufferedReader reader = new BufferedReader(new InputStreamReader(is,"iso-8859-1"),8); StringBuilder sb = new StringBuilder(); String line = null; while ((line = reader.readLine()) != null) { sb.append(line + "\n"); } is.close();result=sb.toString(); }catch(Exception e){ Log.e("log_tag", "Error converting result "+e.toString()); }//將String通過JSONArray解析成最終結(jié)果 try{ JSONArray jArray = new JSONArray(result); for(int i=0;ijArray.length();i++){ JSONObject json_data = jArray.getJSONObject(i); Log.i("log_tag","id: "+json_data.getInt("id")+ ", name: "+json_data.getString("name")+ ", sex: "+json_data.getInt("sex")+ ", birthyear: "+json_data.getInt("birthyear") ); } } }catch(JSONException e){ Log.e("log_tag", "Error parsing data "+e.toString()); }雖然Android開發(fā)中可以直接連接數(shù)據(jù)庫,但是實際中卻不建議這么做,應(yīng)該使用服務(wù)器端中轉(zhuǎn)下完成。

如何連接android和php mysql數(shù)據(jù)庫

1. 通過?MySQL在windows下的配置?中介紹第二種方法,在服務(wù)器機器上配置php和mysql環(huán)境,譬如我的服務(wù)器機器ip為:10.141.249.1362. 新建在test數(shù)據(jù)庫下新建一個teacher表,表的內(nèi)容如下:

3. 在服務(wù)器機器上的phpnow安裝目錄E:\PHPnow-1.5.5\htdocs下新建一個test.php文件,文件內(nèi)容如下:

?php

$link=mysql_connect("127.0.0.1","root","123456");

mysql_query("SET NAMES utf8");

mysql_select_db("test",$link);

$sql=mysql_query("select * from teacher ",$link);

while($row=mysql_fetch_assoc($sql))

$output[]=$row;

print(json_encode($output));

mysql_close();

?

4. 新建一個Android Java Project

需要修改的是一下三個文件:AndroidTestActivity.java、main.xml、AndroidManifest.xml

//AndroidTestActivity.java

package

com.knight.android.test;//根據(jù)實際的工程需要,修改包的名稱

import

java.io.BufferedReader;

import

java.io.InputStream;

import

java.io.InputStreamReader;

import

java.util.ArrayList;

import

org.apache.http.HttpEntity;

import

org.apache.http.HttpResponse;

import

org.apache.http.NameValuePair;

import

org.apache.http.client.HttpClient;

import

org.apache.http.client.methods.HttpGet;

import

org.apache.http.impl.client.DefaultHttpClient;

import

org.json.JSONArray;

import

org.json.JSONException;

import

org.json.JSONObject;

import

android.app.Activity;

import

android.net.ParseException;

import

android.os.Bundle;

import

android.util.Log;

import

android.view.View;

import

android.widget.Button;

import

android.widget.EditText;

public

class

AndroidTestActivity

extends

Activity {

JSONArray jArray;

String result

= null;

InputStream is

= null;

StringBuilder sb

= null;

@Override

public

void

onCreate(Bundle

savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Button b1 = (Button) findViewById(R.id.button1);

b1.setOnClickListener(new

Button.OnClickListener()

{

@Override

public

void

onClick(View v)

{

//

TODO

Auto-generated

method stub

EditText tv = (EditText) findViewById(R.id.editView);

ArrayListNameValuePair nameValuePairs = newArrayListNameValuePair();

//

http get

try

{

HttpClient httpclient = new

DefaultHttpClient();

HttpGet httpget = new

HttpGet(

"");

HttpResponse response = httpclient.execute(httpget);

HttpEntity entity = response.getEntity();

is

=

entity.getContent();

} catch

(Exception e)

{

Log.e("log_tag", "Error

in http connection" + e.toString());

}

//

convert response to string

try

{

BufferedReader reader = new

BufferedReader(

new

InputStreamReader(is, "iso-8859-1"), 8);

sb

= new

StringBuilder();

sb.append(reader.readLine()

+ "\n");

String line = "0";

while

((line =

reader.readLine()) != null) {

sb.append(line + "\n");

}

is.close();

result

= sb.toString();

} catch

(Exception e)

{

Log.e("log_tag", "Error

converting result " + e.toString());

}

//

paring data

int

ct_id;

String ct_name;

try

{

jArray

= new

JSONArray(result);

JSONObject json_data = null;

for

(int

i = 0; i

jArray.length(); i++) {

json_data = jArray.getJSONObject(i);

ct_id = json_data.getInt("id");

ct_name = json_data.getString("name");

tv.append(ct_name + "

\n");

}

} catch

(JSONException e1)

{

//

Toast.makeText(getBaseContext(), "No City Found"

//

,Toast.LENGTH_LONG).show();

} catch

(ParseException e1)

{

e1.printStackTrace();

}

}

});

}

}

layout/main.xml

?xml version="1.0" encoding="utf-8"?

LinearLayout

xmlns:android=""

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical"

Button

? android:id="@+id/button1"

? android:layout_width="wrap_content"

? android:layout_height="wrap_content"

? android:text="click" /

EditText

? android:id="@+id/editView"

? android:layout_width="wrap_content"

? android:layout_height="wrap_content"

? android:text="HI "

? android:textSize="30dip" /

/LinearLayout

AndroidManifest.xml

?xml version="1.0" encoding="utf-8"?

manifest

xmlns:android=""

package="com.knight.android.test"

android:versionCode="1"

android:versionName="1.0"

application

? android:icon="@drawable/ic_launcher"

? android:label="@string/app_name"

? activity

? ? ?

android:name=".AndroidTestActivity"

? ? ? android:label="@string/app_name"

? ? ? intent-filter

? ? ? ? ? action

android:name="android.intent.action.MAIN" /

? ? ? ? ? category

android:name="android.intent.category.LAUNCHER" /

? ? ? /intent-filter

? /activity

/application

!-- 授權(quán)訪問網(wǎng)絡(luò) --

uses-permission android:name="android.permission.INTERNET"/

/manifest

5. 運行結(jié)果如下圖:

點擊click以后,Android會向服務(wù)器發(fā)送一個Http

Get請求,服務(wù)器從mysql中讀取數(shù)據(jù)后,傳送給Android客戶端,客戶端編碼數(shù)據(jù)包,然后返回如下結(jié)果

注意:

(1)AndroidManifest.xml中不能出現(xiàn)uses-sdk android:minSdkVersion="15"

/這種屬性,否則Android客戶端無法連接到遠程服務(wù)器

(2)如果在本機搭建mysql和php環(huán)境,以上程序(AndroidTestActivity.java)中紅色部分應(yīng)更改為:HttpGet httpget = new

HttpGet();127.0.0.1表示手機的本機ip,因為程序最終是在手機上跑的

(3)如果讀者自定義的工程,需要修改一下幾個地方:

第一個是?AndroidTestActivity.java

程序里面的package名稱package

com.knight.android.test;這個根據(jù)讀者自己定義的包要做出相應(yīng)的修改(綠色部分)

第二個是修改 AndroidManifest.xml里面第三行的package=" com.knight.android.test",要保持綠色部分和第一條中的綠色部分相對應(yīng)

第三點是修改AndroidManifest.xml里面activity下面的 android:name=". AndroidTestActivity",將綠色部分修改為 AndroidTestActivity.java的紅色部分(也就是類名)

(4)在MySQL中把編碼設(shè)置成utf8_unicode_ci,在瀏覽器中輸入:localhost/test.php,如果中文出現(xiàn)亂碼,可以把輸出的內(nèi)容復(fù)制到,如果在這里能顯示正常,則說明實際上是的對的,因為瀏覽器輸出的是json編碼

android studio關(guān)于android可以鏈接使用PHP的數(shù)據(jù)庫MySQL的方法,急?。?!

Android

Studio怎么連接mysql數(shù)據(jù)庫,建議使用mysql的客戶端查連接,或者使用java程序去連接,mysql安裝后就會自動一個客戶端,這個就可以連接數(shù)據(jù)庫的。

android

studio是開發(fā)android應(yīng)用的,寫不了jsp,如果你要寫java

web

jsp這種,建議使用IDEA或者用eclipse

IDE(開發(fā)工具)。


新聞標(biāo)題:安卓連接php數(shù)據(jù)庫實例,安卓開發(fā)php
標(biāo)題路徑:http://weahome.cn/article/dsesgii.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部