クラス
java.nio.channels.FileChannel.MapModeの使用
-
FileChannel.MapModeを使用しているパッケージ パッケージ 説明 java.nio.channels 入出力操作を実行できるエンティティ(ファイル、ソケットなど)への接続を表すチャネルや、多重化された非ブロック入出力操作用のセレクタを定義します。 -
-
java.nio.channelsでのFileChannel.MapModeの使用
FileChannel.MapModeとして宣言されているjava.nio.channelsのフィールド 修飾子と型 フィールド 説明 static FileChannel.MapMode
FileChannel.MapMode. PRIVATE
非公開(copy-on-write)マッピング用モードです。static FileChannel.MapMode
FileChannel.MapMode. READ_ONLY
読込み専用マッピング用モードです。static FileChannel.MapMode
FileChannel.MapMode. READ_WRITE
読み込み/書込みマッピング用モードです。FileChannel.MapMode型のパラメータを持つjava.nio.channelsのメソッド 修飾子と型 メソッド 説明 abstract MappedByteBuffer
FileChannel. map(FileChannel.MapMode mode, long position, long size)
このチャネルのファイルの領域を直接メモリーにマッピングします。
-