Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
2 つの問題があります。
1- Android デバイスから UTC 時刻を取得します 2- UNIX 時刻形式 (ミリ秒) に変換します
フィードバックが役に立てば幸いです
私はこれがうまくいくと信じています:
Date now = Calendar.getInstance().getTime(); // this gets you current time as a Date long milis = now.getTime(); // this gets you current time in UNIX format
アプリケーションで登録者のアカウントの印刷バージョンとして使用したい aspx ページがあります。
そのページには、基本的に複数の A4 ページに及ぶ非常に長いテーブルを含む次のコードがあります。
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PrintAccountDetails.asp