web-dev-qa-db-fra.com

Comment ajouter des jours dans la date dans Android

Dans ma base de données, la date de début est celle du format 2011-11-30 (aaaa/mm/jj) et celle du jour comme 40 jours. Comment puis-je calculer le nombre de jours et obtenir le nouveau format de date mm/jj/aaaa.

Quelqu'un peut-il m'aider

Merci 

23
user1061793

Vous pouvez essayer quelque chose comme ça, 

String dt = "2012-01-04";  // Start date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
Calendar c = Calendar.getInstance();
try {
    c.setTime(sdf.parse(dt));
} catch (ParseException e) {
    e.printStackTrace();
}
c.add(Calendar.DATE, 40);  // number of days to add, can also use Calendar.DAY_OF_MONTH in place of Calendar.DATE
SimpleDateFormat sdf1 = new SimpleDateFormat("MM-dd-yyyy");
String output = sdf1.format(c.getTime()); 
66
Lalit Poptani

Étape 1 Obtenir l'instance de calendrier à partir de la chaîne spécifiée

SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
            Calendar c = Calendar.getInstance();
            c.setTime(sdf.parse(dateInString));

Étape 2 utilise add() pour ajouter un nombre de jours au calendrier

c.add(Calendar.DATE, 40); 

Étape 3 Convertissez le dtae au format de date résultant

sdf = new SimpleDateFormat("MM/dd/yyyy");
            Date resultdate = new Date(c.getTimeInMillis());
            dateInString = sdf.format(resultdate);

Code source

String dateInString = "2011-11-30";  // Start date
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
        Calendar c = Calendar.getInstance();
        c.setTime(sdf.parse(dateInString));
        c.add(Calendar.DATE, 40);  
        sdf = new SimpleDateFormat("MM/dd/yyyy");
        Date resultdate = new Date(c.getTimeInMillis());
        dateInString = sdf.format(resultdate);
        System.out.println("String date:"+dateInString);
20
Sunil Kumar Sahoo
Date dtStartDate=o.getStartDate();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
Calendar c = Calendar.getInstance();
c.setTime(dtStartDate);
c.add(Calendar.DATE, 3);  // number of days to add
String dt = sdf.format(c.getTime());  // dt is now the new date
Toast.makeText(this, "" + dt, 5000).show();
7
Roadies

Ce code fonctionne à 100%

            Calendar c = Calendar.getInstance();
            SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd");// HH:mm:ss");
            String reg_date = df.format(c.getTime());
            showtoast("Currrent Date Time : "+reg_date);

            c.add(Calendar.DATE, 3);  // number of days to add
            String end_date = df.format(c.getTime());
            showtoast("end Time : "+end_date);
3
Pir Fahim Shah

Ce morceau de code devrait bien faire le travail !!! 

public static Date addDay(Date oldDate, int numberOfDays) {
    SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
    Calendar c = Calendar.getInstance();
    try {
        c.setTime(dateFormat.parse(oldDate));
    } catch (ParseException e) {
        e.printStackTrace();
    }
    c.add(Calendar.DAY_OF_YEAR,numberOfDays);
    dateFormat=new SimpleDateFormat("MM-dd-YYYY");
    Date newDate=new Date(c.getTimeInMillis());
    String resultDate=dateFormat.format(newDate);
}

Pour plus de fonctionnalités, veuillez vérifier ce lien
Ajouter des jours, des mois, des années à une date

1
Aashis Shrestha
Calendar c = Calendar.getInstance();
    int mYear = c.get(Calendar.YEAR);
    int mMonth = c.get(Calendar.MONTH);
    int mDay = c.get(Calendar.DAY_OF_MONTH);

    // display the current date
    String CurrentDate = mYear + "/" + mMonth + "/" + mDay;

    String dateInString = CurrentDate; // Start date
    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");

    c = Calendar.getInstance();

    try {
        c.setTime(sdf.parse(dateInString));
    } catch (ParseException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    c.add(Calendar.DATE, 7656);//insert the number of days you want to be added to the current date
    sdf = new SimpleDateFormat("dd/MM/yyyy");
    Date resultdate = new Date(c.getTimeInMillis());
    dateInString = sdf.format(resultdate);

    //Display the Result in the Edit Text or Text View your Choice
    EditText etDOR = (EditText)findViewById(R.id.etDateOfReturn);
    etDOR.setText(dateInString);
1
Alex Muriithi

Ça marche pour moi.

Calendar c = Calendar.getInstance();
int mYear = c.get(Calendar.YEAR);
int mMonth = c.get(Calendar.MONTH);
int mDay = c.get(Calendar.DAY_OF_MONTH);

String CurrentDate = mYear + "/" + mMonth + "/" + mDay;
String dateInString = dob; // Select date
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
c = Calendar.getInstance();
try {
c.setTime(sdf.parse(dateInString));
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
c.add(Calendar.DATE, 14);    //14 dats add
sdf = new SimpleDateFormat("dd/MM/yyyy");
Date resultdate = new Date(c.getTimeInMillis());
dateInString = sdf.format(resultdate);
System.out.println(dateInString);
0
tapan prajapati

Juste une copie simple de cette méthode 

public static String ConvertToDate(String dateString,String inputFormater ,String outputFormater) {
        String outputText = "" ;
        try {
            SimpleDateFormat inputFormat = new SimpleDateFormat(inputFormater);
            SimpleDateFormat outputFormat = new SimpleDateFormat(outputFormater);
            Date parsed = null;
            parsed = inputFormat.parse(dateString);
            outputText = outputFormat.format(parsed);

        Log.d(TAG, "  msg : " + outputText);
        } catch (ParseException e) {
            e.printStackTrace();
            Log.e(TAG, "ERROR : " + e.getMessage());
        }
        return outputText;
    } 

Et appelle ça comme 

 public static String INPUTE_JSON_DATE_FORMAT = "yyyy-MM-dd HH:mm:ss";
 public static String FORMAT_FOR_JOB_APPLIED = "MMM dd, yyyy";
 String date ="2017-10-29";
 ConvertToDate(date ,DateUtils.INPUTE_JSON_DATE_FORMAT ,DateUtils.FORMAT_FOR_JOB_APPLIED);  

Vous pouvez mettre n'importe quel format que vous voulez dans votre cituation 

ConvertToDate("2011-11-30","yyyy/mm/dd" ,"mm/dd/yyyy");  
0
sushant gosavi