BufferedWriter.write() | Java

 

Descripción

Método que nos permite escribir contenido sobre un buffer de escritura.

Sintaxis

public void write(char[] cbuf, int off, int len) throws IOException
public void write(int c) throws IOException
public void write(String s, int off, int len) throws IOException

Parámetros

  • String s,
  • int c,
  • char[] cbuf,
  • int len,
  • int off,

Excepciones

IndexOutOfBoundsException, IOException

Clase Padre

BufferedWriter

Ejemplo

// Validamos si existe el fichero
String sFichero = "fichero.txt";
File fichero = new File(sFichero);

if (fichero.exists())
  System.out.println("El fichero " + sFichero + " ya existe");
else {
  try{
     BufferedWriter bw = new BufferedWriter(new FileWriter(sFichero));
		
     // Escribimos 10 filas
     for (int x=0;x<10;x++)
       bw.write("Fila numero " + x + "\n");

     // Hay que cerrar el fichero
     bw.close();
  } catch (IOException ioe){
     ioe.printStackTrace();
  }
}

Líneas de Código

Manual Java

Aprende más sobre Java consultando online o descargando nuestro manual.

Test Java

¿Te atreves a probar tus habilidades y conocimiento en Java con nuestro test?

Vídeos Java

Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.