Android 서버 에서 위치 정 보 를 클 라 이언 트 에 보 내 는 실현
Android 서버 는 위치 정 보 를 클 라 이언 트 에 보 냅 니 다.
환경
AndroidStudio Eclipse
3.코드 구현
서버 서버 servlet 에서 Dao 층 을 호출 하여 데이터베이스 에서 데 이 터 를 찾 고 servlet 에서 찾 은 데 이 터 를 json 문자열(json 배열 형식)로 통합 합 니 다.
서버:
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
// response.setContentType("text/plain; charset=UTF-8");
request.setCharacterEncoding("UTF-8");
ServerToParentDao stpDao = new ServerToParentDao();
// String num = mtpDao.query();
// System.out.println(num);
PrintWriter out = response.getWriter();
StringBuffer sb = new StringBuffer();
sb.append('[');
List<Address> addrList = stpDao.queryOne();
for (Address address : addrList) {
sb.append('{').append("\"id\":").append("" + address.getId() + "").append(",");
sb.append("\"latitude\":").append("\"" + address.getLatitude() + "\"").append(",");
sb.append("\"longitude\":").append("\"" + address.getLongitude() + "\"").append(",");
sb.append("\"time\":\"").append(address.getTime());
sb.append("\"}").append(",");
}
sb.deleteCharAt(sb.length() - 1);
sb.append(']');
out.write(sb.toString());
System.out.println(sb.toString());
// request.setAttribute("json",sb.toString());
// request.getRequestDispatcher("watch.jsp").forward(request, response);
// out.write(num);
// response.getOutputStream().write(mtpDao.query().getBytes("UTF-8"));
out.flush();
out.close();
// System.err.println(request.getParameter(""));
// System.out.println(code);
System.out.println(" ");
// PrintWriter printWriter = response.getWriter();
// printWriter.print(" , !");
// printWriter.flush();
// printWriter.close();
}
클 라 이언 트:
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
HttpPost httpRequest = new HttpPost("http://192.168.159.1:8080/MyAndroidServer/ServerToParentServlet");
List<NameValuePair> params = new ArrayList<NameValuePair>();
// String str = "1";
// params.add(new BasicNameValuePair("Code", str));
Log.i("MY3", "Has Done");
try {
// httpRequest.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));//
HttpClient httpClient = new DefaultHttpClient();
HttpResponse httpResponse = httpClient.execute(httpRequest);//
if (httpResponse.getStatusLine().getStatusCode() == 200) {//
HttpEntity entity = httpResponse.getEntity();
if (entity != null) {
System.out.println("---------");
// System.out.println("Respone content" + EntityUtils.toString(entity, "UTF-8"));
Intent intent = new Intent(ParentRequest.this,MainActivity.class);
intent.putExtra("jsonString",EntityUtils.toString(entity, "UTF-8"));
startActivity(intent);
}
Log.i("MY2", "Has Done");
} else {
Toast.makeText(ParentRequest.this, " Android !", Toast.LENGTH_LONG).show();
}
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
});
요청 주소 쓰기 형식:http://호스트 IP 주소:포트 번호/항목 이름/action 이름HttpPost 방식 으로 연결 을 만 들 고 HttpResponse.getEntity()가 응답 정 보 를 가 져 오 며 EntityUtils.toString(entity,"UTF-8")은 entity 를 String 문자열 로,Intent 는 JSON 문자열 을 다른 activity 페이지 에 전달 합 니 다.
JSON 문자열 분석 클래스:
public static List<Address> getAddress(String jsonStr)
throws JSONException {
/******************* ***********************/
// list
List<Address> mList = new ArrayList<Address>();
Address address = new Address();
JSONArray array = new JSONArray(jsonStr);
for (int i = 0; i < array.length(); i++) {
JSONObject jsonObject = array.getJSONObject(i);
address = new Address(jsonObject.getInt("id"),
jsonObject.getString("latitude"), jsonObject.getString("longitude"),
jsonObject.getString("time"));
mList.add(address);
}
return mList;
}
저 는 그 당시 에 어린이 포 지 셔 닝 을 하고 있 었 습 니 다.데이터 베이스 디자인 은 전면적 인 생각 을 하지 않 았 고 사고 가 비교적 좁 았 습 니 다.생각해 야 할 것 은 어린이 정보 표 에 있 는 어린이 정 보 는 부모 표 에 있 는 부모 정보 와 대응 해 야 한 다 는 것 이다.즉,이 앱 은 한 쌍 의 부모 와 아이 가 아 닌 여러 쌍 에 게 사용 되 는 것 이다.
서버 도 로 컬 을 사용 하지 말고 클 라 우 드 서버 를 사용 해 야 합 니 다.그러면 같은 랜 에 제한 되 지 않 습 니 다.
Android 클 라 이언 트 는 위치 정 보 를 서버 에 보 냅 니 다.
코드 구현
클 라 이언 트:
HttpPost httpRequest = new HttpPost("http://192.168.159.1:8080/MyAndroidServer/ChildrenToServerServlet");
List<NameValuePair> params = new ArrayList<NameValuePair>();
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd-HH:mm");
Date date = new Date(System.currentTimeMillis());
String str=simpleDateFormat.format(date);
System.out.println(str);
params.add(new BasicNameValuePair("Time", str));
params.add(new BasicNameValuePair("Latitude",latitude));
params.add(new BasicNameValuePair("Longitude", longitude));
try {
httpRequest.setEntity(new UrlEncodedFormEntity(params, HTTP.UTF_8));//
HttpClient httpClient = new DefaultHttpClient();
HttpResponse httpResponse = httpClient.execute(httpRequest);//
if(httpResponse.getStatusLine().getStatusCode() == 200){//
// Toast.makeText(ChildrenToServerActivity.this, EntityUtils.toString(httpResponse.getEntity()), Toast.LENGTH_LONG).show();
Intent intent = new Intent();
intent.setAction("cn.abel.action.broadcast");
intent.putExtra("Response", EntityUtils.toString(httpResponse.getEntity()));
context.sendBroadcast(intent);
}else{
// Toast.makeText(MainActivity.this, " Android !", Toast.LENGTH_LONG).show();
Intent intent = new Intent();
intent.setAction("cn.abel.action.broadcast");
intent.putExtra("Response", " Android !");
context.sendBroadcast(intent);
}
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
params.add(new BasicNameValuePair(“Time”, str));
Time 은 str 의 변수 이름 으로 서버 에서 데 이 터 를 받 는 데 사 용 됩 니 다.서버 에 전달 할 데 이 터 를 추가 하 는 데 사 용 됩 니 다.String 문자열 형식 입 니 다.
서버:
public void doPost(HttpServletRequest request, HttpServletResponse response)throws ServletException, IOException {
response.setContentType("text/plain; charset=UTF-8");
request.setCharacterEncoding("UTF-8");
String time = request.getParameter("Time");
String latitude = request.getParameter("Latitude");
String longitude = request.getParameter("Longitude");
ChildrenToAddressDao addressDao = new ChildrenToAddressDao();
addressDao.insert(latitude, longitude, time);
System.err.println(request.getParameter("Time"));
System.err.println(request.getParameter("Latitude"));
System.err.println(request.getParameter("Longitude"));
PrintWriter printWriter = response.getWriter();
printWriter.print(" , !");
printWriter.flush();
printWriter.close();
}
request.getParameter("변수 이름")는 클 라 이언 트 가 대응 하 는 변수 이름 의 데 이 터 를 받 는 데 사 용 됩 니 다.addressDao.insert()는 내 가 정의 한 방법 으로 받 은 데 이 터 를 MySQL 에 저장 합 니 다.
안 드 로 이 드 서버 가 위치 정 보 를 클 라 이언 트 에 보 내 는 실현 에 관 한 이 글 은 여기까지 소개 되 었 습 니 다.더 많은 안 드 로 이 드 서버 위치 정 보 를 클 라 이언 트 에 보 내 는 내용 은 우리 의 이전 글 을 검색 하거나 아래 의 관련 글 을 계속 찾 아 보 세 요.앞으로 많은 지원 을 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.