Vaadin 6 and Internet Explorer 11

409 views Asked by At

I have a problem when I execute a Vaadin 6 application in the Internet Explorer 11.

When I click in any button, a red icon appear and I have this Exception: java.lang.NumberFormatException.

Can someone help me to identify the cause of this problem?

1

There are 1 answers

5
ChoCho On

I don't know if you are making the right question, but, your input string is 26.670000076293945, it has a dot and you are trying to parseInt this number. Well a number with a dot can't be an integer, that's why you get a NumberFormatException.