Top "Parseexception" questions

A Java ParseException gets raised whenever a ParseObject issues an invalid request.

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 …

java tomcat web.xml parseexception
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 …

java exception-handling formatting parseexception
SimpleDateFormat parse(string str) doesn't throw an exception 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/12…

java simpledateformat parseexception
Multiple wildcards in one query in elasticsearch

curl localhost:9200/tweet/posts/_search -d '{ "query": { "and": [ { "wildcard": { "_all": "*pet*" } }, { "wildcard": { "_all": "*rom*" } } ] } }' This gives me a …

curl elasticsearch parseexception
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 …

java email ejb-3.0 jakarta-mail parseexception
Parse String date in (yyyy.MM.dd HH.mm.ss.S) format

I want the Input string which is of pattern "yyyy.MM.dd HH.mm.ss.S" to be converted to …

java simpledateformat parseexception
SimpleDateFormat: unparseable date exception

After looking after several existing posts, I am still not able to get my SimpleDateFormat parser working. Here is the …

java android date-format simpledateformat parseexception
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, …

java android simpledateformat parseexception