Java
Here is the simplest I cat get. I'm not that sure for efficient.
Anyone has a sample using nio?
C:\oreyes\samples\java\reading>type Read.java
import java.io.*;
public class Read{
private byte[] readBin( String file ) throws IOException {
FileInputStream fis = new FileInputStream( file );
byte[] data = new byte[fis.available()];
fis.read( data );
fis.close();
return data;
}
private void writeBin( String file, byte[] data ) throws IOException {
FileOutputStream fos = new FileOutputStream( file );
fos.write( data, 0, data.length );
fos.close();
}
private void writeToFile( String file, String content ) throws IOException {
PrintWriter out = new PrintWriter( new File( file ) );
out.print( content );
out.close();
}
private String readFile( String file ) throws IOException {
BufferedReader reader = new BufferedReader( new FileReader (file));
String line = null;
StringBuilder stringBuilder = new StringBuilder();
String ls = System.getProperty("line.separator");
while( ( line = reader.readLine() ) != null ) {
stringBuilder.append( line );
stringBuilder.append( ls );
}
return stringBuilder.toString();
}
public static void main( String [] args ) throws IOException {
Read r = new Read();
r.writeToFile("x.java", r.readFile("Read.java"));
r.writeBin("x.class", r.readBin("Read.class"));
assert new File("x.java").exists();
assert new File("x.class").exists();
assert new File("Read.java").length() == new File("x.java").length();
assert new File("Read.class").length() == new File("x.class").length();
System.out.println("finish");
}
}
C:\oreyes\samples\java\reading>java -ea Read
finish
