I am using JDK 1.6.0.18 for my Swing application. I am experiencing very different problem when i try to run it sometimes it doesn’t refresh few windows. Whereas when I run it on JDK 1.6.0. everything works fine.
Can anyone tell me what is the problem with JDK 1.6.0.18
Thanks in advance
Thanks for the responses.
I got my problem solved. The problem was List which was used by 2 or more threads concurrently
and was not thread safe also. Because of some essential condition we have to keep the refresh of window at the time when that List get filled. So on some machines the count was coming wrong.
Especially on machinbe with higher configuratuions line quad core procesors, 4GB ram etc.
Making the List synchornized removed the issue of REFRESH 🙂