私はsqliteを使用したデータ操作に取り組んでいます。 どのようにsqliteにdatetime値を挿入することができます 私は私のアプリで以下のコードを実装しました。事前にそれが動作 、sqliteを使用したデータ操作
SimpleDateFormat curFormater = new SimpleDateFormat("dd-MMM-yyyy",Locale.ENGLISH);
Date dateObj = null;
dateObj =curFormater.parse(txt_date_start.getText().toString());
SimpleDateFormat postFormater = new SimpleDateFormat("yyyy-MM-dd",Locale.ENGLISH);
String newDateStr = postFormater.format(dateObj);
が、私はPLEは私の例を与える、「2011 - 7月 - 13 5:15 PM」として保存したい...
おかげ