0

私はアンドロイドが初めてで、ユーザーが2つの日付を入力し、ボタンをクリックすると、それらの差を日数で受け取る簡単なアプリケーションを開発しようとしています。これが私のコードですが、残念ながら出力は常に 0 です。

package il.ac.hit.datetodate;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;

import android.os.Bundle;
import android.app.Activity;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        final EditText ed1 = (EditText) findViewById(R.id.editText1);
        final EditText ed2 = (EditText) findViewById(R.id.editText2);
        final TextView tv = (TextView) findViewById(R.id.textView2);
        final Button bt = (Button) findViewById(R.id.button1);

        bt.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                Calendar cal1 = Calendar.getInstance();
                Calendar cal2 = Calendar.getInstance();
                SimpleDateFormat sdf1 = new SimpleDateFormat("MMM dd yyyy");
                SimpleDateFormat sdf2 = new SimpleDateFormat("MMM dd yyyy");

                try {
                    cal1.setTime(sdf1.parse(ed1.getText().toString()));
                } catch (ParseException e) {
                    e.printStackTrace();
                }

                try {
                    cal2.setTime(sdf2.parse(ed2.getText().toString()));
                } catch (ParseException e) {
                    e.printStackTrace();
                }

                long days1 = cal1.getTimeInMillis();
                long days2 = cal2.getTimeInMillis();
                long diff = (days2 - days1)/(1000*60*60*24);
                tv.setText(String.valueOf(diff));
            }
        });
    }
}
4

4 に答える 4

0

SimpleDateFormat を使用すると、文字列を解析して Calendar-Object にすることができます。

Calendar cal = Calendar.getInstance();
SimpleDateFormat sdf = new SimpleDateFormat("EEE MMM dd HH:mm:ss z yyyy");
cal.setTime(sdf.parse("Mon Mar 14 16:02:37 GMT 2011"));// all done
于 2013-09-06T11:56:56.857 に答える
0

See if this works

If you want the difference between two times you can use this ::

Date date1 = cal.getTime(); String endTime = "2013/29/08 18:59:59"; 
SimpleDateFormat dateFormat =     new SimpleDateFormat( "yyyy/dd/MM HH:mm:ss"); 
Date dtEndTime = dateFormat.parse(endTime); 
DecimalFormat formatter = new DecimalFormat("###,###"); 
long diff = dtEndTime.getTime() - date1.getTime();

the diff will give you the difference in millisecs.

于 2013-09-06T13:11:18.123 に答える
0

このコードを試して、

long diff = date1.getTime() - date2.getTime();
long seconds = diff / 1000;
long minutes = seconds / 60;
long hours = minutes / 60;
long days = hours / 24;
于 2013-09-06T11:58:20.723 に答える
0

以下のコードを使用します。

 Calendar thatDay = Calendar.getInstance();
 thatDay.set(Calendar.DAY_OF_MONTH,25);
 thatDay.set(Calendar.MONTH,7); // 0-11 so 1 less
 thatDay.set(Calendar.YEAR, 1985);

 Calendar today = Calendar.getInstance();

 long diff = today.getTimeInMillis() - thatDay.getTimeInMillis(); //result in millis

概算...

long days = diff / (24 * 60 * 60 * 1000);

文字列から日付を解析するには、次を使用できます

String strThatDay = "1985/08/25";
SimpleDateFormat formatter = new SimpleDateFormat("yyyy/MM/dd");
Date d = null;
try {
   d = formatter.parse(strThatDay);//catch exception
} catch (ParseException e) {
   // TODO Auto-generated catch block
   e.printStackTrace();
} 
Calendar thatDay = Calendar.getInstance();
thatDay.setTime(d); //rest is the same....

Substrings で Integer.parseInt() を実行して、数値を取得することもできます。

于 2013-09-06T12:05:29.500 に答える