Descripción
Sintaxis
public abstract class InputStream extends Object implements Closeable
Constructores
Métodos
- available()
- close()
- mark()
- markSupported()
- read()
- readAllBytes()
- readNBytes()
- reset()
- skip()
- transferTo()
Ejemplo
// Copiar ficheros
File origen = new File("origen.txt");
File destino = new File("destino.txt");
try {
InputStream in = new FileInputStream(origen);
OutputStream out = new FileOutputStream(destino);
byte[] buf = new byte[1024];
int len;
while ((len = in.read(buf)) > 0) {
out.write(buf, 0, len);
}
in.close();
out.close();
} catch (IOException ioe){
ioe.printStackTrace();
}
Líneas de Código
Vídeos Java
Disfruta también de nuestros artículos sobre Java en formato vídeo. Aprovecha y suscribete a nuestro canal.