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 7672767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T16:21:42+00:00 2026-05-31T16:21:42+00:00

I have a string with dates it looks like: 20120316 20120317 20120318 … I

  • 0

I have a string with dates it looks like: “20120316 20120317 20120318” … I store this dates in this format, but I would like to make a Date array from these numbers with the format 03/16 03/17 03/18 …

So far:

 String[] DailyDatasOnce2 = DatesOnce.split(" ");   

         DailyDatasOnce = new String[DailyDatasOnce2.length];
         for (int i=0;i< (DailyDatasOnce2.length) ;i++){
             DailyDatasOnce[i]=DailyDatasOnce2[i];
         }

         datumok = new Date[DailyDatasOnce.length];

         for (int i=0;i< (DailyDatasOnce.length) ;i++){

            SimpleDateFormat curFormater = new SimpleDateFormat("yyyyMMdd"); 

            java.util.Date dateObj = null;
            java.util.Date dateObj2 = null;
            try {
                dateObj = curFormater.parse(DailyDatasOnce[i]);
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } 
            SimpleDateFormat postFormater = new SimpleDateFormat("MM/dd"); 

            String newDateStr = postFormater.format(dateObj); 

            try {
                dateObj2 = curFormater.parse(newDateStr);
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } 
            datumok[i] = dateObj2;

         }

So first I make a string array with the string dates (DailyDatasOnce), maybe that first for loop is useless but i can skip it. Now I make a Date array and I want to put the dates into it. I format the dates to format I want, then I try to convert them to Date format. Until the String newDateStr it is working, I manage to change the type of the date.
But I get syntax error for the last row: Type mismatch: Cannot convert from java.util.date to java.sql.data.
I suspect the problem but if it is not possible, how can i do this?

  • 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-31T16:21:43+00:00Added an answer on May 31, 2026 at 4:21 pm

    Here’s what I recommend:

    DateFormat fromFormat = new SimpleDateFormat("yyyyMMdd");
    fromFormat.setLenient(false);
    DateFormat toFormat = new SimpleDateFormat("MM/dd");
    toFormat.setLenient(false);
    String fromDate = "20120316";
    Date d = fromFormat.parse(fromDate); // this is a java.util.Date
    System.out.println(String.format("date is %s", toFormat.format(d));
    

    You don’t need two Dates, just one; you need to and from formats.

    It must be java.util.Date.

    If you have a collection, just do this:

    String [] dateStrings = datesOnce.split(" ");
    List<Date> dates = new ArrayList<Date>();
    for (String dateString : dateStrings) {
        dates.add(fromFormat.parse(dateString));
    }
    

    You can format all those Dates any way you wish.

    If it must be a Date array, do it this way:

    String [] dateStrings = datesOnce.split(" ");
    Date [] dates = new Date[dateStrings.length];
    int i = 0; 
    for (String dateString : dateStrings) {
        dates[i++] = fromFormat.parse(dateString);
    }
    

    Here’s a complete demo:

    package homework;
    
    import java.text.DateFormat;
    import java.text.ParseException;
    import java.text.SimpleDateFormat;
    import java.util.Date;
    
    /**
     * DateFormatDemo
     * @author Michael
     * @link http://stackoverflow.com/questions/9796520/how-to-convert-string-format-dates-to-date-format-dates/9796619#comment12475521_9796619
     * @since 3/20/12 8:55 PM
     */
    public class DateFormatDemo {
    
        public static void main(String[] args) {
            String input = "20120316 20120317 20120318";
            DateFormat fromFormat = new SimpleDateFormat("yyyyMMdd");
            fromFormat.setLenient(false);
            DateFormat toFormat = new SimpleDateFormat("MM/dd");
            toFormat.setLenient(false);
            String [] dateStrings = input.split("\\s+");
            Date [] dates = new Date[dateStrings.length];
            int i = 0;
            for (String dateString : dateStrings) {
                try {
                    dates[i++] = fromFormat.parse(dateString);
                } catch (ParseException e) {
                    e.printStackTrace();
                }
            }
            for (Date d : dates) {
                System.out.println(toFormat.format(d));
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been passed a date string that looks like this: Thu%20Mar%2011%202010%2015%3A09%3A11%20GMT%2B0000%20(BST) I want
I have a date string which looks like this: Thu Feb 09 2012 01:50:00
i have a date string looks like this : 8/30/1987 at this time i
Lets say I have a string that represents a date that looks like this:
I have a date string that looks like the following javascript format. I want
In Java 6, I have a date string that looks like 2011-11-28T21:00:00Z How would
I have a string called TheUserTime that looks like this: string TheUserTime = 12.12.2011.16.22;
I have a string that looks like this: set @sqlstring = N'select @mindate =
I have a date string, returned from a ExtJS datetime picker, which looks like
I have a string that contains the representation of a date. It looks like:

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.