Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6987825
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T18:59:21+00:00 2026-05-27T18:59:21+00:00

I have an android app in which i want to convert my string into

  • 0

I have an android app in which i want to convert my string into date data type.
I get the string via date picker in this format (“12/30/2011”).
I want to convert it into string in the same format. This is my code:

        Date dateObj = new Date();
        dateFormat = new SimpleDateFormat("MM/dd/yyyy");
        dateFormat.setLenient(false);
        dateObj = dateFormat.parse("12/30/2011");
        Log.v("",""+dateObj);

But i get value in this form:

Wed Dec 28 00:00:00 GMT+05:00 2011

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T18:59:21+00:00Added an answer on May 27, 2026 at 6:59 pm

    Does it help?

    SimpleDateFormat sdf = new SimpleDateFormat(format);
    sdf.format(new Date())
    

    Please have a look at this

    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    
    public class DateIssue {
        public static void main(String[] args) {
            SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
            System.out.println(sdf.format(new Date()));
        }
    }
    

    Output: 12/28/2011

    In place of

    Log.v("",""+dateObj);
    

    use this

     Log.v("",""+sdf.format(new Date()));
    

    You shouldn’t print the original date object but the formatted one.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to build a android app ,which converts some data to pdf file
I have developed an Android app which I want to be available both as
I have created a database for my android app which contains static data and
I have an app which I want to use instead of the standard android
I have an app which I want to run on as many Android phones
I have an Android App which contains an external dependend jar library. This external
I have built an android app which use Google Map feature. I want my
I have android app which works fine. And now I want to add some
We have an Android app and a Web Service. We want to download part
I have an Android project that branched into three different applications, app-1 , app-2

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.