Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a string which returns the date and time as 2012-11-08 12:45:30 . I need to get the date and time in separate strings and then the date has to be shown in the format which is there in the Phone's Date and Time settings. Here is the code which I have tried so far: date value from db is 2012-11-08 I am getting the date format in phone's settings as

String datefrmt = Settings.System.getString(
                context.getContentResolver(), Settings.System.DATE_FORMAT);

the code to apply this format to the obtained date from db is:

SimpleDateFormat sdf = new SimpleDateFormat(datefrmt);
java.util.Date date_1 = sdf.parse("2012-11-08");
String s = sdf.format(date_1);

I am getting the month and day properly but the year its returning something randomly and thats not a correct value. Can anyone please guide me where am I going wrong. Thanks

share|improve this question
1  
What's the value in datefrmt? – Yogendra Singh Nov 8 '12 at 5:34
it will show the date format in the Date and Time settings of your phone @YogendraSingh – Rosalie Nov 8 '12 at 5:50
@Rosalie Let me ask it other way, are you getting different years for same setting? If no, what are the settings (datefrmt) values e.g. MM/dd/yyyy for the settings when you get different years? – Yogendra Singh Nov 8 '12 at 5:53
its crashing when I am applying the date format. The date format in the phone is MM/dd/yyyy @YogendraSingh – Rosalie Nov 8 '12 at 6:24
show 3 more comments

3 Answers

up vote 0 down vote accepted

If you have 2012-11-08 12:45:30 string and you want to parse it to Date object and change its format to another (system format for example or 2012-11-08 format):

try {
        String yourString="2012-11-08 12:45:30";

        //first we parse input date string and create Date object
        String inputDateString ="yyyy-dd-MM hh:mm:ss";
        SimpleDateFormat inputDateFormat = new SimpleDateFormat(inputDateString);
        java.util.Date  date = inputDateFormat.parse(yourString);

        //log
        Log.e(getClass().getName(), inputDateFormat.format(date));

        //create system date format 
        String dateformt = Settings.System.getString( this.getContentResolver(), Settings.System.DATE_FORMAT);
        //if its for some reason==null let it be "yyyy-dd-MM" 
        if(dateformt==null){
            dateformt="yyyy-dd-MM";
        }
        SimpleDateFormat systemDateFormat = new SimpleDateFormat(dateformt);
        String outputString = systemDateFormat.format(date);

        //log
        Log.e(getClass().getName(), outputString);
    } catch (ParseException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
share|improve this answer
thank you so much – Rosalie Nov 8 '12 at 7:24

you can use the simpleDateFormat as:

 SimpleDateFormat simpDate = new SimpleDateFormat(datefrmt,
                    Locale.ENGLISH);
  String s = simpDate.format(new Date());

for reference, you can refer to developer site:

for more information refer this link

share|improve this answer
its crashing if i give locale along with dateformat @Riten – Rosalie Nov 8 '12 at 6:15

Since your DB date is in yyyy-MM-dd, don't use the dynamic format to get the date, otherwise it will crash(throw parse exception), instead use the static format as below to get the date. You may use the dynamic format to convert the string as below:

   //use static format to convert into date from static formatted data in db 
   SimpleDateFormat sdf1 = new SimpleDateFormat("yyyy-MM-dd");
   java.util.Date date_1 = sdf1.parse("2012-11-08");//got the date

   //use the dynamic format to convert into string
   SimpleDateFormat sdf2 = new SimpleDateFormat(datefrmt);
   String s = sdf2.format(date_1);
share|improve this answer
when applying the phone setting format I am getting the value as 08-11-0170. The phone setting as I said has MM-dd-yyyy. The value from db is 2012-11-03. @Yogendra Singh – Rosalie Nov 8 '12 at 6:36
@Rosalie First improvement. Its not crashing. Can you please print(log) date_1 to know, which of the two conversions causing issue? – Yogendra Singh Nov 8 '12 at 6:40
@Rosalie I verified. If I pass hard coded datefrmt MM-dd-yyyy, it prints me 11-03-2012. Also I advice you to log datefrmt to make sure, its having right format string. – Yogendra Singh Nov 8 '12 at 6:44
the date format is correct in log as MM-dd-yyyy but the value I'm getting after applying is 08-11-0170. Don't know from where it is coming – Rosalie Nov 8 '12 at 7:13
@Rosalie: Just for my understanding, how was this answer different that one you accepted? – Yogendra Singh Nov 8 '12 at 17:16
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.