這篇文章主要介紹“php如何結(jié)合安卓客戶(hù)端實(shí)現(xiàn)查詢(xún)交互”,在日常操作中,相信很多人在php如何結(jié)合安卓客戶(hù)端實(shí)現(xiàn)查詢(xún)交互問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”php如何結(jié)合安卓客戶(hù)端實(shí)現(xiàn)查詢(xún)交互”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
成都創(chuàng)新互聯(lián)專(zhuān)注于同江企業(yè)網(wǎng)站建設(shè),成都響應(yīng)式網(wǎng)站建設(shè),購(gòu)物商城網(wǎng)站建設(shè)。同江網(wǎng)站建設(shè)公司,為同江等地區(qū)提供建站服務(wù)。全流程按需規(guī)劃網(wǎng)站,專(zhuān)業(yè)設(shè)計(jì),全程項(xiàng)目跟蹤,成都創(chuàng)新互聯(lián)專(zhuān)業(yè)和態(tài)度為您提供的服務(wù)PHP 服務(wù)器端:
function getids() { $this->output->set_header('Content-Type: application/json; charset=utf-8'); $jsonstr = ''; $pname = $pcallid = $pworkid = ''; if (isset($_GET['name'])) { $pname = $_GET['name']; } if (isset($_GET['callid'])) { $pcallid = $_GET['callid']; } if (isset($_GET['workid'])) { $pworkid = $_GET['workid']; } $this->load->model('wireid_model'); $this->wireid_model->insertonly($pname, $pcallid); if ($pname == '' && $pcallid == '' && $pworkid == '') { die(); } else { $sqlstr = 'select * from twireid where 1=1 '; if ($pname != '') { $sqlstr = $sqlstr . " and GNAME='{$pname}' "; } else if ($pcallid != '') { $sqlstr = $sqlstr . " and GOLDCALLID='{$pcallid}' "; } else if ($pworkid != '') { $sqlstr = $sqlstr . " and GCARDID='{$pworkid}' "; } $getdata = $this->wireid_model->getsql($sqlstr); // JSON_FORCE_OBJECT 防止出現(xiàn) [] $jsonstr = json_encode($getdata->result_array(), JSON_FORCE_OBJECT); echo $jsonstr; } }
java 安卓端:
doAskTask = new Runnable() { @Override public void run() { // TODO // 在這里進(jìn)行 http request.網(wǎng)絡(luò)請(qǐng)求相關(guān)操作 ggname = etname.getText().toString(); ggworkid = etworkid.getText().toString(); ggcallid = etcallid.getText().toString(); String baseurl = ConfidDatas.askbaseurl; String askstr = "name=" + ggname + "&callid=" + ggcallid + "&workid=" + ggworkid; String result = null; HttpGet httpGet = new HttpGet(baseurl + askstr); // 第二步,使用execute方法發(fā)送HTTP GET請(qǐng)求,并返回HttpResponse對(duì)象 HttpResponse httpResponse = null; try { httpResponse = new DefaultHttpClient().execute(httpGet); } catch (ClientProtocolException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } Message msg = new Message(); Bundle data = new Bundle(); if (httpResponse.getStatusLine().getStatusCode() == 200) { // 第三步,使用getEntity方法活得返回結(jié)果 try { result = EntityUtils.toString(httpResponse.getEntity()); data.putString("value", result); data.putString("result", "isok"); msg.setData(data); handler.sendMessage(msg); } catch (ParseException e) { // e.printStackTrace(); } catch (IOException e) { // e.printStackTrace(); } } else { // 錯(cuò)誤 data.putString("value", ""); data.putString("result", "iserr"); msg.setData(data); handler.sendMessage(msg); } } };
到此,關(guān)于“php如何結(jié)合安卓客戶(hù)端實(shí)現(xiàn)查詢(xún)交互”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!