File size: 355 Bytes
c574d3a |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import java.io.FileOutputStream;
public class FileOutputStreamExample1 {
public static void main(String[] args) {
try (FileOutputStream fout = new FileOutputStream("testout1.txt")) {
fout.write(65);
System.out.println("success...");
} catch (Exception e) {
System.out.println(e);
}
}
}
|