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.
JMSAppender を使用してロギング イベントを送信しています。それらを印刷する/ファイルにReceiver入れる必要があります-日付の形式:
Receiver
yyyy-MM-dd HH:mm:ss,SSS
event.getTimeStamp()しかし、私はwhich を返すことしかできませんlong。
event.getTimeStamp()
long
%d(通常のロギングでは、現在の時間をミリ秒単位で記録できないため、奇妙に思います)
%d
ログイベントから ISO 形式で日付を取得する方法はありますか?
これを試すことができますか
DateFormat dformat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss,SSS"); String dateString = dformat.format(new Date(event.getTimeStamp()); System.out.println(dateString );