>  기사  >  백엔드 개발  >  PHP와 Java Android 클라이언트 간의 쿼리 상호 작용

PHP와 Java Android 클라이언트 간의 쿼리 상호 작용

WBOY
WBOY원래의
2016-08-08 09:25:01817검색

PHP 서버 측:

    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  防止出现 []
            $jsonstr = json_encode($getdata->result_array(), JSON_FORCE_OBJECT);
            echo $jsonstr;
        }
    }

Java Android 버전:

	doAskTask = new Runnable() {
			@Override
			public void run() {
				// TODO
				// 在这里进行 http request.网络请求相关操作
				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方法发送HTTP GET请求,并返回HttpResponse对象
				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方法活得返回结果
					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 { // 错误
					data.putString("value", "");
					data.putString("result", "iserr");
					msg.setData(data);
					handler.sendMessage(msg);
				}
			}
		};

 

위 내용을 포함하여 PHP와 Java Android 클라이언트 간의 쿼리 상호 작용을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.