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.
DateオブジェクトをJavaMEのRMSに保存したいと思います。私がやりたいのは、最初に日付を、RMSが保存できるString /int/任意のプリミティブデータ型の値に変換することです。次に、このデータを読み戻して、そこからDateオブジェクトを作成したいと思います。では、どうすればこれを行うことができますか?
を使用できます。これは。Date.getTime()を返しますlong。new Date(long)コンストラクターを使用して、プロセスを逆にすることができます。
Date.getTime()
long
new Date(long)