--- old/src/java.base/share/classes/java/io/RandomAccessFile.java 2017-05-05 15:25:35.727108670 -0700 +++ new/src/java.base/share/classes/java/io/RandomAccessFile.java 2017-05-05 15:25:35.599103080 -0700 @@ -136,8 +136,12 @@ * in which the file is to be opened. The permitted values and their * meanings are: * - * + *
+ * + * * + * + * * * + * *
Access mode permitted values and meanings
ValueMeaning
{@code "r"} Open for reading only. Invoking any of the {@code write} * methods of the resulting object will cause an @@ -153,6 +157,7 @@ * Open for reading and writing, as with {@code "rw"}, and also * require that every update to the file's content be written * synchronously to the underlying storage device.
* * The {@code "rws"} and {@code "rwd"} modes work much like the {@link