aeds2/Codigos/u00 Nivelamento/java/arquivo/ExemploRAF01Escrita.java

17 lines
386 B
Java

import java.io.*;
public class ExemploRAF01Escrita {
public static void main(String args[]) throws Exception {
RandomAccessFile raf = new RandomAccessFile("exemplo.txt","rw");
raf.writeInt(1);
raf.writeDouble(5.3);
raf.writeChar('X');
raf.writeBoolean(true);
raf.writeBytes("Algoritmos");
raf.close();
}
}