中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android如何開發疫情查詢app

發布時間:2020-07-17 10:34:49 來源:億速云 閱讀:511 作者:小豬 欄目:移動開發

這篇文章主要為大家展示了Android如何開發疫情查詢app,內容簡而易懂,希望大家可以學習一下,學習完之后肯定會有收獲的,下面讓小編帶大家一起來看看吧。

一丶工作原理:

App 通過請求本地tomcat發布的servlet (調用了 HttpURLConnection 方法)獲取MySQL數據庫當中的數據,獲取數據并返回到App 當中,顯示給用戶。(其中傳遞的格式為 json)

使用的工具:Android Studio  開發APP  Eclipse 發布Servlet,數據傳遞

二丶運行代碼:

Tomcat 發布的Servlet 類:

package com.Servlet;

import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import com.Bean.worldbean;
import com.Dao.Dao;
import com.google.gson.Gson;



/**
 * Servlet implementation class Worldservlet
 */
@WebServlet("/Worldservlet")
public class Worldservlet extends HttpServlet {
 private static final long serialVersionUID = 1L;

 /**
 * @see HttpServlet#HttpServlet()
 */
 public Worldservlet() {
 super();
 // TODO Auto-generated constructor stub
 }

 /**
 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 // TODO Auto-generated method stub
 response.setContentType("text/html;charset=UTF-8");
 request.setCharacterEncoding("UTF-8");
 String s=null;
 //獲取傳遞過來的參數
 String date = request.getParameter("date");
 String name =request.getParameter("name");
 // Gson 谷歌推出的用于生成和解析JSON 數據格式的工具 使用時需要 導入jar 包 我的是 gson-2.6.2.jar
 Gson gson=new Gson();
 try {
 worldbean info= Dao.getinfo(date,name);
 //將數據 轉換為 Json 格式
 s=gson.toJson(info);
 } catch (Exception e) {
 // TODO Auto-generated catch block
 e.printStackTrace();
 }
 //System.out.println(s);
 //方法作用 只能打印輸出文本格式的(包括html標簽) 不可打印對象
 response.getWriter().write(s);

 }

 /**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
 protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
 // TODO Auto-generated method stub
 doGet(request, response);
 }

}

As 當中的MainActivity:

package com.example.yiqingdemo;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

import org.json.JSONObject;

import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;

public class MainActivity extends AppCompatActivity {
 EditText editTextCountry, editTextDate;
 TextView textView;
 Button button;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 editTextCountry = findViewById(R.id.editText4);
 editTextDate = findViewById(R.id.editText3);
 textView = findViewById(R.id.textView2);
 button = findViewById(R.id.button);
 button.setOnClickListener(
 new View.OnClickListener() {
  @Override
  public void onClick(View v) {
  //本機tomcat 發布的網站 其實是一個servlet 類 必須先讓本機發布(啟動tomcat 運行) 然后才能訪問改網站
  String url = "http://192.168.0.106:8080/YiQingSearch/Worldservlet?date=" + editTextDate.getText().toString() + "&name=" + editTextCountry.getText().toString();
  get(url);
  }
 }
 );
 }

 public void get(final String url) {
 new Thread(new Runnable() {
 @Override
 public void run() {
 HttpURLConnection connection = null;
 InputStream is = null;


 try {
  //獲取url 對象
  URL Url = new URL(url);
  //獲取httpURlConnection 對象
  connection = (HttpURLConnection) Url.openConnection();
  //默認為get方法 or post
  connection.setRequestMethod("GET");
  //默認不使用緩存
  connection.setUseCaches(false);
  //設置連接超時時間 單位毫秒
  connection.setConnectTimeout(10000);
  //設置讀取超時時間
  connection.setReadTimeout(10000);
  //設置是否從httpUrlConnection 讀入,默認為true
  connection.setDoInput(true);

  //相應的碼數為 200
  if (connection.getResponseCode() == HttpURLConnection.HTTP_OK) {
  //獲取輸入流
  is = connection.getInputStream();
  //將輸入流內的數據變為Sting類型數據
  String info = getStringFromInputStream(is);
  //轉換為JSON 類型便于讀取
  JSONObject jsonObject = new JSONObject(info);
  textView.setText(
  "更新時間:" + jsonObject.getString("updatetime") +
   "\n確診人數:" + jsonObject.getString("confirm")
   + "\n死亡人數:" + jsonObject.getString("dead")
   + "\n治愈人數:" + jsonObject.getString("heal")
  );


  /* //獲取url 網頁的源代碼
  BufferedReader reader= new BufferedReader(new InputStreamReader(is)); //包裝字節流為字符流
  StringBuilder response = new StringBuilder();
  String line;


  while((line = reader.readLine())!=null){

  response.append(line);
  }

  String s = response.toString();
  */
  }
 } catch (Exception e) {
  e.printStackTrace();
 } finally {
  if (connection != null) {
  connection.disconnect();
  }
 }

 }
 }).start();

 }

 private static String getStringFromInputStream(InputStream is) throws Exception {
 //定義字節數組緩存區
 ByteArrayOutputStream by = new ByteArrayOutputStream();
 byte[] buff = new byte[1024];
 int len = -1;
 while ((len = is.read(buff)) != -1) {
 by.write(buff, 0, len);
 }
 is.close();
 //將緩沖區的數據轉換為 String 類型
 String html = by.toString();
 by.close();
 return html;
 }

}

除此之外還需要給APP賦予權限 :

As 的 AndroidMainfest 如下:

添加注釋的為自主添加的權限

<&#63;xml version="1.0" encoding="utf-8"&#63;>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.example.yiqingdemo">

 <uses-permission android:name="android.permission.INTERNET" /> <!--聯網所需要的權限-->
 <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <!-- 主要用于管理 WIFI 連接的各方面-->
 <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <!--主要用于監視一般網路連接 -->

 <application
 android:allowBackup="true"
 android:icon="@mipmap/ic_launcher"
 android:label="@string/app_name"
 android:roundIcon="@mipmap/ic_launcher_round"
 android:supportsRtl="true"
 android:theme="@style/AppTheme"
 android:usesCleartextTraffic="true"> <!-- 指示應用程序是否打算使用明文網絡流量 -->
 <activity android:name=".MainActivity">
 <intent-filter>
 <action android:name="android.intent.action.MAIN" />

 <category android:name="android.intent.category.LAUNCHER" />
 </intent-filter>
 </activity>
 </application>

</manifest>

三丶 運行結果:

Android如何開發疫情查詢app

以上就是關于Android如何開發疫情查詢app的內容,如果你們有學習到知識或者技能,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

天水市| 和平区| 云梦县| 阜阳市| 台东市| 新化县| 嘉定区| 循化| 巩留县| 保亭| 涡阳县| 娱乐| 黄梅县| 榆中县| 台前县| 库伦旗| 连平县| 柘城县| 双柏县| 绥中县| 方山县| 新兴县| 花垣县| 盐津县| 宁城县| 灵丘县| 于田县| 藁城市| 肃南| 广饶县| 湖南省| 保康县| 虎林市| 隆尧县| 宁南县| 烟台市| 镇安县| 安西县| 淄博市| 轮台县| 建宁县|