RandomAccessFile类

/**

* Allows reading from and writing to a file in a random-access manner. This is

* different from the uni-directional sequential access that a

* {@link FileInputStream} or {@link FileOutputStream} provides. If the file is

* opened in read/write mode, write operations are available as well. The

* position of the next read or write operation can be moved forwards and

* backwards after every operation.

*/


/**

* Constructs a new {@code RandomAccessFile} based on the file named {@code

* fileName} and opens it according to the access string in {@code mode}.

* The file path may be specified absolutely or relative to the system

* property {@code "user.dir"}.

*

* @param fileName

* the name of the file to open.

* @param mode

* the file access <a href="#accessmode">mode</a>, either {@code

* "r"}, {@code "rw"}, {@code "rws"} or {@code "rwd"}.

* @throws FileNotFoundException

* if the file cannot be opened or created according to {@code

* mode}.

* @throws IllegalArgumentException

* if {@code mode} is not {@code "r"}, {@code "rw"}, {@code

* "rws"} or {@code "rwd"}.

*/

public RandomAccessFile(String fileName, String mode) throws FileNotFoundException {

this(new File(fileName), mode);

}

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. Android学习笔记——xml布局属性
  2. Android(安卓)使用SQLCipher对sqlite进行
  3. Android的Widget编写实例
  4. 构建Android自适应布局应用方案解析
  5. Android(安卓)6.0权限请求相关及权限分组
  6. 关于Android(安卓)Studio里的Gradle,你所
  7. Android(安卓)学习笔记 - 《第一行代码 A
  8. Android开发实战之——ProgressDialog的
  9. Android不明原因崩溃,不断重启解决办法记
  10. Android(安卓)新API 之 MediaCodec使用笔