Necesito ayuda para realizar un proyecto en el lenguaje de programación java, alguien podría ayudarme?
el proyecto va así.
elaborar un software en consola que guarde un listado de artículos con: codigo, precio, en archivos. El programa deberá dar de alta nuevos productos, modificar el precio de los productos o el nombre. Apenas tendrá una opción de caja, es decir; numero de productos vendidos, el subtotal por producto y el total a pagar y registrar la venta en un archivo
espero y alguien me pueda ayudar, es un poco complicado y es un proyecto final, gracias :(
Polfed:
Hasta que fecha puedes realizar el proyecto.
Respuestas a la pregunta
Contestado por
1
Usar ficheros para el desarrollo del proyecto.
public static void escribirFichero(File f,String texto){
try{
FileWriter fw = new FileWriter(f,false);
BufferedWriter bw = new BufferedWriter(fw);
bw.append(texto);
bw.close();
fw.close();
}catch(FileNotFoundException e){} catch (IOException ex) {}
}
public static String leerFichero(File f){
String texto = "";
try{
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);
String lectura;
while((lectura = br.readLine()) != null){
texto = texto+lectura+"\n";
}
br.close();
fr.close();
}catch(FileNotFoundException e){} catch (IOException ex) {}
return texto;
}
public static void escribirFichero(File f,String texto){
try{
FileWriter fw = new FileWriter(f,false);
BufferedWriter bw = new BufferedWriter(fw);
bw.append(texto);
bw.close();
fw.close();
}catch(FileNotFoundException e){} catch (IOException ex) {}
}
public static String leerFichero(File f){
String texto = "";
try{
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);
String lectura;
while((lectura = br.readLine()) != null){
texto = texto+lectura+"\n";
}
br.close();
fr.close();
}catch(FileNotFoundException e){} catch (IOException ex) {}
return texto;
}
Otras preguntas
Matemáticas,
hace 9 meses
Historia,
hace 9 meses
Biología,
hace 1 año
Estadística y Cálculo,
hace 1 año
Matemáticas,
hace 1 año
Historia,
hace 1 año