Advertisement
Re_21

when

May 2nd, 2023
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 2.32 KB | None | 0 0
  1. public static void eliminar(String numeroTC) {
  2.         File archivo = new File("datos.txt");
  3.         try {
  4.             if (archivo.exists()) {
  5.                 BufferedReader bR = new BufferedReader(new FileReader(archivo));
  6.                 boolean TCEncontrada = false;
  7.                 String linea;
  8.                 int numLineas = 0;
  9.                 int contador = 0;
  10.                 //leer cada linea
  11.                 bR = new BufferedReader(new FileReader(archivo));
  12.                 while ((linea = bR.readLine()) != null) {
  13.                     numLineas++;
  14.                 }
  15.                 System.out.println("El número de TCs es: " + numLineas);
  16.                 //crea un arreglo de strings segun las dimensiones de las lineas encontradas
  17.                 String arregloDeStrings[] = new String[numLineas];
  18.                 bR.close();
  19.                 bR = new BufferedReader(new FileReader(archivo));
  20.                 while ((linea = bR.readLine()) != null) {
  21.                     arregloDeStrings[contador] = linea;
  22.                     contador++;
  23.                 }
  24.                 System.out.println(contador);
  25.                 BufferedWriter bW = new BufferedWriter(new FileWriter(archivo));
  26.                 for (int i = 0; i < arregloDeStrings.length; i++) {
  27.                     String[] TCatributo = arregloDeStrings[i].split("%");
  28.                     //verifica el primer atributo con el parametor
  29.                     if (TCatributo[0].equalsIgnoreCase(numeroTC)) {
  30.                         TCPoo TC = new TCPoo(TCatributo[0], TCatributo[1], TCatributo[2], TCatributo[3]);
  31.                         TC.setEstadoTC("Inactivo");
  32.                         TCEncontrada = true;
  33.                         escribirTC(TC, bW);
  34.                         System.out.println("Registro eliminado");
  35.                     } else {
  36.                         bW.write(arregloDeStrings[i]);
  37.                         bW.newLine();
  38.                     }
  39.                 }
  40.                 if (TCEncontrada) {
  41.                     System.out.println("Registros eliminados exitosamente");
  42.                 } else {
  43.                     System.out.println("No se encontró registro");
  44.                 }
  45.                 bR.close();
  46.                 bW.close();
  47.             }
  48.         } catch (Exception e) {
  49.             System.err.println(e);
  50.         }
  51.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement