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.
Androidを介してsqliteに以下の形式で日付を挿入したい:
2012年10月11日 15:40
これを達成する方法を教えてください??
このコードを使用する
SimpleDateFormat formatter = new SimpleDateFormat("dd MMM yyyy HH:mm"); // date is Object of Date class of java.util String s = formatter.format(date); // now you can save 's' to the sqlite.