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. 在引导程序弹出窗口中使用交互式元素
  2. jQuery去掉导航分割线的最后一条竖线
  3. jQuery $ajax 传中文数据到action乱码解
  4. 使用php变量用ajax更新jqplot
  5. JS检查浏览器是否支持CSS Snap Points
  6. 使用jquery在ajax xmlhttprequest上重用j
  7. 在Ubuntu 14.04上通过npm安装jsdom的问题
  8. jQuery 选择器 与 事件
  9. xpages多附件接收
  10. 关于JQuery jqGrid colModel 遇到的一个