Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
122 views

SimpleDateFormat parse(string str) didn't been throw when str = 2011/12/12aaaaaaaaa?

Here is an example: public MyDate() throws ParseException { SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/d"); sdf.setLenient(false); String t1 = "2011/12/12aaa"; ...
7
votes
3answers
118 views

DecimalFormat converts numbers with non-digits

Using DecimalFormat gives no parse exception when using this kind of number: 123hello which is obviously not really a number, and converts to 123.0 value. How can I avoid this kind of behaviour? As ...
6
votes
9answers
563 views

Deprecated Date methods in Java?

What is really meant when using Java Date utilities and something has been deprecated. Does this mean that it is discouraged to use, or does it imply that it is forbidden? I am guessing it is bad ...
3
votes
4answers
56 views

struck in parsing custom data format in java

I am trying to parse the date in a particular custom format. WEDNESDAY 25th JAN 2012 - 12:44:07 PM like this.. I created a SimpleDateFormat for this.. SimpleDateFormat sdf = new ...
3
votes
2answers
375 views

java.text.ParseException: Unparseable date

I get the following error: ´java.text.ParseException: Unparseable date: "Aug 31 09:53:19 2011"´ with this format: new SimpleDateFormat("MMM dd HH:mm:ss yyyy"); Does anyone see the problem?
2
votes
3answers
803 views

SimpleDateFormat: unparseable date exception

After looking after several existing posts, I am still not able to get my SimpleDateFormat parser working. Here is the code: SimpleDateFormat df = new SimpleDateFormat("EEE, dd MMM yyyy ...
1
vote
5answers
243 views

java.text.ParseException: Unparseable date: yyyy-MM-dd HH:mm:ss.SSSSSS

I am getting ParseException for the following code String dateStr = "2011-12-22 10:56:24.389362"; String formatStr = "yyyy-MM-dd HH:mm:ss.SSSSSS"; Date testDate = null; ...
1
vote
2answers
167 views

Handle SAX parserexception

I have a problem with a SAX xml parser. I want to parse a xml file which obviously is not valid (I get an ExpatParser$ParseException: At line 5, column 169: not well-formed (invalid token)). I know ...
0
votes
2answers
42 views

SimpleDateFormat parse error position

I'd like to notificate user if he entered date out of range(for example month = 22). But dateFormat stores in global settings file, so I don't know the exactly position of month field in input string. ...
0
votes
1answer
179 views

SEVERE: Parse error in application web.xml file

I'm trying to deploy an application on tomcat 7.0.23 (the web app is all compiled and built), and I've been getting this error in catalina.out: INFO: ...
0
votes
1answer
178 views

Proguard ParseException unknown option dump.txt

I read alot of posts similar to this topic, but cant solve it anyway. Everytime I try to export my signed application with the obfuscator enabled, I get the following: [2011-12-23 13:26:35 - AppName] ...
0
votes
3answers
185 views

Java ParseException while attempting String to Date parsing

I'm having a hard time Parsing/Formatting a Date string received back from a web service. I've attempted multiple approaches, but with no luck. Sample Date String: 2011-10-05T03:00:00Z Exception: ...
0
votes
1answer
113 views

SimpleDateFormat giving ParseException for unknown reason

I need to format my date (in Java) which is in String format. When I use the following code, taken from an tutorial/reference source, it just gives the following error. I have tried everything I can ...
0
votes
1answer
71 views

ParseException in Android

I am triying this code https://github.com/headius/dexclient/blob/master/src/DexClient.java And I have in my main code the following code: DexClient dxclient=new DexClient(); String[] ...
0
votes
2answers
704 views

Getting ParseException on Transport.send(message)

For some reason I'm getting a javax.mail.internet.ParseException when I call Transport.send() on a MimeMessage. This worked before when it was only a plain text email, but when I changed it to have ...
0
votes
1answer
314 views

How to fix Velocity's ParseErrorException?

I'm passing to velocity template comma separated values and while starting I receive ParseErrorException. How to fix it? #set ($test=StringUtils.split($filterFieldCSV,",")) #foreach ( ...
0
votes
4answers
1k views

Java Date exception handling try catch

Is there some sort of exception in Java to catch an invalid Date object? I'm trying to use it in the following method, but I don't know what type of exception to look for. Is it a ParseException. ...