I am using simple date format in my app in following way in the class:

static SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");

public static myFunction(final String strDate)
{
      Date endDate = null;
 endDate = MyClass.sdf.parse(strDate);
}

I am using FindBugs which is giving the following bug in above code:

"As the JavaDoc states, DateFormats are inherently unsafe for multithreaded use. The detector has found a call to an instance of DateFormat that has been obtained via a static field. This looks suspicous."

Can someone please explain the bug. I am not able to understand what above message is trying to tell.

Thanks for reading!!

link|improve this question

2  
Possible duplicate? – Dallas Dec 8 '11 at 5:14
The question pointed by @Dallas is not in the same wording but the accepted answer is useful and quite complete. – madth3 Dec 8 '11 at 5:24
feedback

4 Answers

up vote 2 down vote accepted

The others who answered about thread-safety and removing the static keyword from before SimpleDateFormat are correct, though the code you posted with your question is not compilable at all.

I think this is closer to the code you're looking for:

public static Date parseDateStr(final String dateStr) throws ParseException
{
 SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
 return sdf.parse(dateStr);
}
link|improve this answer
An alternative would be to declare parseDateStr as synchronized. – user949300 Dec 8 '11 at 6:41
feedback

Remove the static from static SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");

The var is being kept as a single static instance scoped to this method. Meaning that other threads accessing this method concurrently will make dateformat calls on the same instance which is not threadsafe.

link|improve this answer
Can not make it non static.. Actually its being used in a utility class where the methods are static so that could be called using class name. Something like: return MyUtil.sdf.format(calendar.getTime()); -- Any other solution or is it ok to ignore FingBugs ? – Nikunj Chauhan Dec 8 '11 at 5:17
If your app is single threaded then you can ignore it. From your comment I'm assuming sdf is a class field rather than inside of a method. You should update your question if this is the case. If your app is multithreaded then I advise against keeping a static instance of SDF around for use like this. It can return unpredictable results in these cases. You could get around this by providing synchronized access to this field via a method and making the field private to avoid anyone bypassing this method. – Steven Dec 8 '11 at 5:23
feedback

DateFormat's are not thread safe. This is even documented in the javadoc. Since you are declaring it as a static variable, FindBugs knows that there is a potential for it being used in multiple threads. Read more about the issue and alternatives here.

Also, your code shouldn't compile as Java doesn't support local static variables. How do I create a static local variable in Java?

link|improve this answer
feedback

as per the suggestion of Pangea go ahead and you can test the code below.

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;



public class Test {

    public static Date myFunction(final String strDate) throws ParseExceptoion
    {
     SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy");
        return sdf.parse(strDate);

    }


public static void main(String[] args) throws ParseException {
    System.out.println(myFunction("05/18/1989").toString());

}
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.