Java by API/java.io/FileDescriptor — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 17:43, 31 мая 2010
FileDescriptor: sync()
import java.io.FileDescriptor;
import java.io.FileOutputStream;
public class Main {
public static void main(String[] argv) throws Exception {
FileOutputStream os = new FileOutputStream("outfilename");
FileDescriptor fd = os.getFD();
os.write(1);
os.flush();
fd.sync();
}
}