SimpleDateFormat is a concrete class for formatting and parsing dates in a locale-sensitive manner. It allows for formatting (date -> text), parsing (text -> date), and normalization.

learn more… | top users | synonyms

0
votes
2answers
29 views

how to format 2013-05-15T10:00:00-07:00 to Date android

I am trying to format the date string to Date, and then get the month/day from it: String strDate="2013-05-15T10:00:00-07:00"; SimpleDateFormat dateFormat = new SimpleDateFormat( ...
0
votes
4answers
58 views

Can not parse String with Simple Date format

I have a SimpleDateFormat like this : SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MMM-dd HH:mm:ss"); and trying to parse such 2012-Jul-29 17:14:39 but I`m getting ...
0
votes
1answer
31 views

Parse specific date string format

I have read a lot of questions and searched for a lot of libs all over the internet but I can't find one that can do this quickly. I want to parse a specific date in a specific date format like this: ...
1
vote
1answer
25 views

Using synchronized keyword while using DateFormat in a multithreading environment

Where to use synchronized keyword while using DateFormat in a multithreading environment? I am getting below Exception: java.lang.ArrayIndexOutOfBoundsException: -1 When I looked into my code, I ...
0
votes
8answers
47 views

Android - How can I split the date format to year, month and day from String to int?

I would like to ask if I have a date with dd/mm/yyyy in String format, I want to split it to int year, int month and int day, how can to that. Other than that, the String date (dd/mm/yyyy) is stored ...
0
votes
0answers
25 views

How can I do the Inserted date subtract Current date?

I am trying to subtract the Inserted date and the current date. The inserted date already in the format dd/mm/yyyy in SQLite. Here is my coding Calendar today = Calendar.getInstance(); String ...
-7
votes
2answers
42 views

Parse complex date with SimpleDateFormat

I have a date in string, provide by webservices: 2013-05-13T10:06:34.023-03:00 How to parse this to Java Date? SimpleDateFormat with yyyy-MM-dd HH:mm doesn't work... I need only date and time ...
0
votes
4answers
36 views

Convert time difference in milliseconds to formatted time

Let's say I have the difference between two hours java.text.DateFormat f = new java.text.SimpleDateFormat("HH:mm"); java.util.Date checkIn = f.parse("00:00"); java.util.Date checkOut = ...
0
votes
1answer
30 views

Unparsable date exception MM/dd/yyy hh:mm:ss a z

String inputStr = "05/01/2012 10:51:47 AM PDT"; String inputFmt = "MM/dd/yyyy hh:mm:ss a z"; SimpleDateFormat dfLong = new SimpleDateFormat(inputFmt);; Date localModifiedDate = ...
0
votes
5answers
52 views

Java Formatting Date

I am trying to get the current date and format it however i am getting an invalid month of 59. Under is the code Code import java.text.DateFormat; import java.text.SimpleDateFormat; import ...
0
votes
1answer
69 views

Check if EditText input matches SimpleDateFormat Android

I've searched a lot about this but I didn't find a way to check if a text written by the user in an EditText matches a SimpleDateFormat, is there a simple way to do that without using regex ? Here is ...
0
votes
1answer
20 views

How to get localization of day in week

I couldnt find a symbol for that in SimpleDateFormat How can I get the current day's localization ? For example: Monday: 1. day of week ; Tuesday: 2.day, wednesday:3.day ..... I want to get ...
0
votes
1answer
38 views

JFormattedTextField with MaskFormatter and DateFormat

after reading this article and this question I tried to make a combo of the two: a JFormattedTextField that always shows the slashes in the correct positions and that automatically parses a Date ...
0
votes
2answers
53 views

NullPointerException while formatting date using SimpleDateFormat

This is the code that is getting the null pointer exception: SimpleDateFormat df = new SimpleDateFormat("MMMM dd, yyyy"); String temp = df.format(load.getDeliveryDate()); System.out.println(temp); ...
1
vote
1answer
41 views

checking the format of a date in csv file

I am parsing an csv file , and I am able to do it successfully through csv beans 0.5 jar now I have a query is that in my csv file there is date column as shown below.. Name|date AAA|02-Mar-2012 ...
0
votes
0answers
25 views

Different date format results (with exactly same locales and dates) on pc and on phone? Why?

I have very simple test function: public static String dateToString(long date, String format) { SimpleDateFormat sdf = new SimpleDateFormat(format, locale); return sdf.format(new Date(date)); ...
0
votes
4answers
37 views

how to convert String date in to 29-nov-2011 format in android

Hello every one I have one question regarding date format. I am making an android app which takes date from the database and display on the screen but I want when user view that date it should be in ...
2
votes
2answers
97 views

Java SimpleDateFormat parse returning the wrong day

I'm trying to parse a string in the format of "Monday, May 15 at 1:00 PM" into a datetime so that i can enter it into a database. However the parse isnt returning the right day when i'm testing this ...
0
votes
1answer
44 views

Using SimpleDateFormat(“MM/dd/yyyy”).format in an SQL Query

Is it possible to use SimpleDateFormat like so in the following SQL query? SELECT empnumber WHERE compname = 'mycomp' ORDER BY new SimpleDateFormat("MM/dd/yyyy").format(genfield), emppnumber asc A ...
0
votes
3answers
37 views

Java Parse Date w/ SimpleDateFormat

I'm sure this is a simple one! I've got this String String date = "Wed, 2 Jan 2013 12:17:15 +0000 (GMT)" which I want to parse to a Date to be able to set an JavaMail's sent date. Here's my full code ...
0
votes
1answer
65 views

Issue with SimpleDateFormat's milliseconds

I tried this snippet code and the output is very surprising. Why the output is different from the input? Did I make a mistake or is there a problem with SimpleDateFormat? SimpleDateFormat sdf = new ...
0
votes
2answers
35 views

How to display the date format in android?

String date="21-04-2013"; In my android application Here i want to display the date in the following format like "21" is a separate string and month is like "Apr" as a separate string and year is ...
0
votes
2answers
18 views

Error inserting time into sqlite

I have two strings that I am trying to insert into a table "categories". The strings are "updatedAt" and "createdAt". I have them as strings in the simple date format: SimpleDateFormat mSdf = new ...
0
votes
0answers
28 views

android SimpleDateFormat return null on different locale

This code block takes a string value of UTC datatime and convert it to local DateTime. SimpleDateFormat sourcesdf = new SimpleDateFormat(); sourcesdf.setTimeZone(TimeZone.getTimeZone("UTC")); Date ...
0
votes
2answers
55 views

Java processing multiple possibly unknown date/time formats

I am trying to create something that can check date/time of many formats to see if its a valid date/time so that I can process it. Processing it consists of converting the date/time to something ...
0
votes
0answers
26 views

SimpleDateFormat returns wrong time zone during parse

I am facing a strange problem during the creation of Date object. I have the below code to set the time zone of the date to UTC. Before the parse statement i see that sdfDate has time zone as UTC but ...
1
vote
0answers
55 views

Digital clock wiget not displaying time in TextViews

I am very new to java and programming for android. So far, it has been fun! I made a digital clock widget that worked, except it did not update the time. After some research, I have rewritten the ...
0
votes
1answer
44 views

UTC timestamp not returning correct time

I get a date string from the server in EST so I convert it example date 2013-04-16T11:56:07.15 incidentDate = l.item(0).getTextContent(); DateFormat dformat = new ...
-2
votes
1answer
45 views

Cannot convert date from UTC to another timezone

I'm trying to convert an UTC date/time String to another timezone. It just shows the date/time in UTC timezone. Code below: apiDate = "2013-04-16T16:05:50Z"; SimpleDateFormat ...
1
vote
3answers
66 views

SimpleDateFormat.parse() ignores the number of characters in pattern

I'm trying to parse a date String which can have tree different formats. Even though the String should not match the second pattern it somehow does and therefore returns a wrong date. That's my code: ...
0
votes
2answers
28 views

Parsing date gives Date of different format to what is specified. (Java)

I get dates as Strings (ie: 2013-04-07 17:20:16.0) and I need to create Date objects to represent these so that I can set the date's in JSpinners. I am using this to format the date strings I get: ...
-10
votes
1answer
98 views

How to convert String to Date in java [duplicate]

I have a string something like date month year(31 08 2012) . I want to convert it to date format. String string = "31082012"; Date date = new SimpleDateFormat("DDMMYYYY").parse(string); ...
1
vote
1answer
73 views

Parsing long date in Android with SimpleDateFormat [duplicate]

How should I configure SimpleDateFormat in order to be able to parse the following date: Thu, 4 Apr 2013 00:00:00 CET I tried: new SimpleDateFormat("EEE dd MMM yyyy HH:mm:ss z"); But it got the ...
1
vote
1answer
46 views

SimpleDateFormat bug with Large Dates

update: I thought the Android version was to blame, but it turns out it is the user-timezone This code produces incorrect output when my tablets time is in Central European time (+2 in summer time): ...
0
votes
4answers
87 views

Java date format string for date “Wednesday, January 2, 2013 5:29:26 PM +02:00”

I'm importing some data into some system and it asks me to provide a java date format string for the dates in my CSV document. I'm not a Java programmer, and I have difficulties of testing it. It asks ...
1
vote
2answers
61 views

Why formatted date is giving previous century [duplicate]

I have date in 4 digits. I came across inputs those are after 2050. In my application "0150" means January 01 2050. But when i format it returns following output. Sun Jan 01 00:00:00 PKT 1950 ...
-3
votes
1answer
103 views

Java Simple Date Format [duplicate]

I am trying to format text into a date. Here is what I have: String pattern = "yyyy.MM.dd"; SimpleDateFormat sdf = new SimpleDateFormat(pattern); Date d=sdf.parse("12.1.5"); I get: ...
0
votes
1answer
58 views

SimpleDateFormatter throws ParseException

I have these two methods that are written right now. As the scenario goes, when I grab a data field from the database, it is in BigDecimal format. So I decided to write a test for it (the ...
0
votes
0answers
36 views

Allowing multiple JFormattedTextField to accept new SimpleDateObjects

I'd like my dateField to accept two date formats. The solution I currently has only accepts the final element from the String array. Is it possible to accept both date formats? import ...
0
votes
4answers
130 views

how to create Date object from String value

When running through the below code I am getting an UNPARSABLE DATE EXCEPTION. How do I fix this? package dateWork; import java.text.DateFormat; import java.text.ParseException; ...
0
votes
3answers
64 views

How to format my date with SimpleDateFormat?

I'm trying to set a date format, but when i run this code String oldstring = "2013-01-1"; System.out.println("oldstring = "+oldstring); Date date = new ...
0
votes
1answer
106 views

How to set a date and time to JSpinner in JAVA (Netbeans)?

I have a date and time value in String type. String dateTime = "2012-10-27 19:00:00.000"; And I have a JSpinner named spnDateTime with Spinner Model Type as Date. What I need to do is get the ...
0
votes
3answers
1k views

Java format yyyy-MM-dd'T'HH:mm:ss.SSSz to yyyy-mm-dd HH:mm:ss

I'm trying to format a date in yyyy-MM-dd'T'HH:mm:ss.SSSz format to yyyy-mm-dd HH:mm:ss, which should be easy but I can't get it to work. A date that has to be parsed is in the form of: ...
0
votes
2answers
67 views

Date parsing magic

Here is my code: private static final DateFormat DATE_FORMAT = new SimpleDateFormat("EEE, d MMM yyyy HH:mm:ss Z", Locale.ENGLISH); .... private static Date parseIfModifiedSince(HttpServletRequest ...
0
votes
1answer
42 views

puzzle in datetime parse without year

I want to parse some String into Date, and format the Date into String in another style. When parsing some datetime String without year, I found the following puzzles. I have two different input ...
5
votes
3answers
164 views

Parsing String to Date without using SimpleDateFormat?

I am developing a spring application and in one of my controller i have following lines to parse from string to date and format the parsed date to required format. But again i need to parse back ...
0
votes
1answer
107 views

SimpleDateFormat Parsing error with jQueryUI datepicker

I'm trying to parse date value using SimpleDateFormat from jQueryUi datepicker, but everytime I try to save it to the database it gets saved in a weird format, for instance I enter 02/10/1995 it gets ...
0
votes
2answers
171 views

How to validate any date format pattern itself in Java

I just could not found any way to check if the provided pattern is valid or not before validating any date. For example String datePattern = "blablabla"; How can we validate if its a valid pattern ...
1
vote
2answers
132 views

How to get only Hour and Minute of JSpinner?

I have a JSpinner. When i usespinner.getValue()it gives me Sun Mar 24 01:11:41 PDT 2013 but i want to have only Hour and Minute in 24 hour format Date date = new Date(); SpinnerDateModel sm = ...
0
votes
2answers
48 views

Convert Java String into Date format

I'm stuggling to convert String 'Tue Jan 01 01:01:00 GMT 2013' into a date format. I tried to use simple date class, but it didn't succeed. String st=list[1]; Date start = new SimpleDateFormat("EEE ...

1 2 3 4 5 11