Se me ocurre que con un:
if(numCuenta.equals(cuenta)) { } else { System.out.print("La cuenta no existe \n");}
Pero algo no me funciona :(
Código Java:
Ver originalpublic class Objetivo1B {
private static HashMap
<String, Float
> saldoCuenta
= new HashMap
<String, Float
>(); private static String numCuenta
; public static void main
(String[] args
) { cargarCuentas();
mostrarCuentas("SALDOS INICIALES\n");
procesaFacturas();
mostrarCuentas("\nSALDOS FINALES\n");
System.
out.
println("\nfin objetivo1"); }
private static void mostrarCuentas
(String cabecera
) { Set<String> set = saldoCuenta.keySet();
Iterator<String> iter = set.iterator();
while (iter.hasNext()) {
Object saldo
= saldoCuenta.
get(cuenta
); System.
out.
print(cuenta
+ " Saldo: " + saldo
+ " €\n"); }
}
private static void procesaFacturas() {
try {
System.
out.
println("\nMOVIMIENTOS A LAS CUENTAS\n"); "datos/Facturas2.txt"), 1024);
while ((linea = fichero.readLine()) != null) {
String cuenta
= (linea.
split("@")[0]); String tipo
= (linea.
split("@")[1]); Float importe
= Float.
parseFloat(linea.
split("@")[2]); Float saldoActual
= saldoCuenta.
get(cuenta
); if(numCuenta.equals(cuenta)) {
if(tipo.compareTo("A") == 0 || tipo.compareTo("C") == 0) {
if(tipo.compareTo("A") == 0) { // abono
nuevoSaldo = saldoActual + importe;
saldoCuenta.put(cuenta, nuevoSaldo);
System.
out.
print(cuenta
+ " = " + tipo
+ ", " + importe
+ "\n"); }
if(tipo.compareTo("C") == 0) { // cargo
nuevoSaldo = saldoActual - importe;
saldoCuenta.put(cuenta, nuevoSaldo);
System.
out.
print(cuenta
+ " = " + tipo
+ ", " + importe
+ "\n"); }
} else {
System.
out.
print(cuenta
+ " = tipo de operación invalida, " + importe
+ "\n");} }else {
System.
out.
print("Cuenta no existe \n");} }
System.
out.
println("Formato del número invalido"); System.
out.
println("Valores cargados incorrectos"); System.
out.
println("Fichero inexistente"); }
}
private static void cargarCuentas() {
/*
* Método que lee el fichero de cuentas y lo carga en un HashMap
*/
try {
"datos/Cuentas2.txt"), 1024);
while ((linea = fichero.readLine()) != null) {
numCuenta = (linea.split("#")[0]);
Float saldo
= Float.
parseFloat(linea.
split("#")[1]); saldoCuenta.put(numCuenta, saldo);// se carga HashMap con saldos
// de cuentas
}
fichero.close();
System.
out.
println("Punto nulo NO FUNCIONA AÚN ni la captura"); System.
out.
println("Formato del número invalido"); System.
out.
println("Valores cargados incorrectos"); System.
out.
println("Fichero inexistente"); System.
out.
println("Capturada IllegalArgumentException"); System.
out.
println("Capturada IOException"); }
}
}