Androidはリモートサーバ時間を取得します。

3679 ワード

ローカル時間を取得すると、ユーザ設定によってエラーが発生するため、アプリケーションがリモートサーバ時間を取得する必要があります。もしあなたが自分のサーバーを持っていないなら、インターネット会社が提供する時間APIインターフェースを使ってもいいです。
直接アクセス http://quan.suning.com/getSysTime.do インターフェースから提供される時間の書式が見えます。
{
  "sysTime2": "2019-04-19 10:23:04",
  "sysTime1": "20190419102304"
}
中には2つの時間データがあります。 sysTime 2とsysTime 1は、一般的なタイムフォーマットですが、計算と記憶はタイムスタンプ形式ですので、時間を取ったら変換します。
取得時間
ネットワークデータを取得するためには、Android manifest.xmlファイルにネットワーク利用権限を申請する必要があります。
もう一つのネットワーク要求のクラスを書いて、リモートデータをロードします。
package com.example.gettime;

import android.util.Log;

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

public class HttpHandler {

    private static final String TAG = "HttpHandler";

    public HttpHandler() {

    }

    public String makeServiceCall(String reqUrl) {
        String response = null;
        try {
            URL url = new URL(reqUrl);
            HttpURLConnection conn = (HttpURLConnection) url.openConnection();
            conn.setRequestMethod("GET");
            // read the response
            InputStream in = new BufferedInputStream(conn.getInputStream());
            response = convertStreamToString(in);
        } catch (MalformedURLException e) {
            Log.e(TAG, "MalformedURLException: " + e.getMessage());
        } catch (ProtocolException e) {
            Log.e(TAG, "ProtocolException: " + e.getMessage());
        } catch (IOException e) {
            Log.e(TAG, "IOException: " + e.getMessage());
        } catch (Exception e) {
            Log.e(TAG, "Exception: " + e.getMessage());
        }
        return response;
    }

    private String convertStreamToString(InputStream is) {
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder sb = new StringBuilder();

        String line;
        try {
            while ((line = reader.readLine()) != null) {
                sb.append(line).append('
'); } } catch (IOException e) { e.printStackTrace(); } finally { try { is.close(); } catch (IOException e) { e.printStackTrace(); } } return sb.toString(); } }
以下はパッケージの良い方法です。
時間get ServerTimestampを取得します。
public static final int getServerTimestamp() {
	final HttpHandler httpHandler = new HttpHandler();
	final String jsonStr = httpHandler.makeServiceCall("http://quan.suning.com/getSysTime.do");

	if (jsonStr != null) {
		try {
			final JSONObject json = new JSONObject(jsonStr);
			if (json.has("sysTime2")) {
				final String date = json.getString("sysTime2");
				return dateToTimestamp(date);
			}
		} catch (JSONException e) {
			// e.printStackTrace();
		}
	}

	//         ,       ,      .

	return Integer.valueOf(new Date().getTime()/1000+"");
}
変換時間dateToTimestamp
public static final int dateToTimestamp(String time) {
    final SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    final Date date;
    try {
        date = dateFormat.parse(time);
    } catch (ParseException e) {
        return 0;
    }

    return Integer.valueOf(date.getTime()/1000+"");
}