ricardo90 Posted April 11, 2018 at 12:30 PM Report #610182 Posted April 11, 2018 at 12:30 PM Boa tarde. tenho um problema a inserir um valor no banco de dados através de uma Jtextfield. alguem pode ajudar? codigo que tenho feito : NumberFormat nf = NumberFormat.getInstance(); nf.setMinimumFractionDigits(2); float a; a=(Float.parseFloat(txtutilccaixa.getText()) - Float.parseFloat(txtutilrdt.getText())); txtutildiferenca.setText(String.valueOf(nf.format(a))); Erro: Exception in thread “AWT-EventQueue-0” java.lang.NumberFormatException: For input string: "-153,15" PS: -153,15 é o resultado da soma dá no calculo que estou a fazer
M6 Posted April 11, 2018 at 03:47 PM Report #610188 Posted April 11, 2018 at 03:47 PM O teu problema está na representação do número. Estás a passar o valor usando a virgula como separador decimal e tem de ser o ponto. 10 REM Generation 48K! 20 INPUT "URL:", A$ 30 IF A$(1 TO 4) = "HTTP" THEN PRINT "400 Bad Request": GOTO 50 40 PRINT "404 Not Found" 50 PRINT "./M6 @ Portugal a Programar."
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now