Posts by wellson.almeida • 13 points
3 posts
-
0
votes2
answers1283
viewsA: Generating dates , from a date entered and month quantity informed
[I DECIDED THAT WAY] String data_f = ""; GregorianCalendar gc = new GregorianCalendar(); String data = "19/11/2014"; Integer duracaoCurso = 5; Integer ano = Integer.valueOf(data.substring(6, 10));…
javaanswered wellson.almeida 13 -
0
votes2
answers1283
viewsQ: Generating dates , from a date entered and month quantity informed
I have to generate an automatic date from the date and quantity of month informed. Ex:Data digitada: 01/04/2014, Quantidade mês: 5 meses. Every time the year ends, it switches to the next automatic.…
javaasked wellson.almeida 13 -
1
votes2
answers4866
viewsQ: Java.lang.String cannot be cast to error , when capturing data in Jcomobox to save
I have the event button saved, when I click to save, the following appears : Java.lang.String cannot be cast to org.nomedopacote.modelo.Funcionario cbNomeUsuario - It’s Jcomobox’s name that they’re…