hola quisiera implementar un programa en java que me de como resultado en un textfiel
esta es mi principal
public class Main {
public Main() {
}
public static void main
(String[] args
) { Checking checkingAccount = new Checking("1234",150);
Saving savingAccount = new Saving("12399", 100,0.06);
savingAccount.deposit(700.00);
try{
checkingAccount.withdraw(60.00);
}
}
System.
out.
println("Checking Balance is: " + checkingAccount.getBalance() );
System.
out.
println("Saving Balance is: " + savingAccount.getBalance() );
}
qusiera imprimir checkingAccount.getBalance() y savingAccount.getBalance() en un textfield, investigue que se hace de esta forma ..pero no me sale espero que me puedan ayudar. gracias
JTextField campo = new javax.swing.JTextField();
String valor="hola";
campo.setText(valor);