LHAライブラリ
A C F G H I J L M O R S T U

A

available() - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
現在の入力データが EOF に達したあとで呼び出した場合は 0 を返します, そうでない場合は常に 1 を返します.

C

close() - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
LHAInputStreamをクローズします.
closeEntry() - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
現在のLHAエントリーをクローズし、次のエントリの直前までスキップします.
CRC16 - class jp.gr.java_conf.turner.util.lha.CRC16.
CRC16計算用クラス
CRC16() - class jp.gr.java_conf.turner.util.lha.CRC16 のコンストラクタ
CRC16オブジェクトを生成します。

F

FA_ARCH - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
アーカイブフラグ属性値用マスク.
FA_DIREC - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
ディレクトリ属性値用マスク.
FA_HIDDEN - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
隠しファイル属性値用マスク.
FA_LABEL - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
ボリュームラベル属性値用マスク(多分使わない?).
FA_RDONLY - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
リードオンリー属性値用マスク.
FA_SYSTEM - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
システムファイル属性値用マスク.

G

getAttribute() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ファイル属性を返します(MS-DOS互換).
getComment() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ヘッダ内のコメントを取得します.
getCompressedSize() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
圧縮後のサイズを返します
getCompressMethod() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
圧縮のメソッドを返します.(
getCRC() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
CRCの値を取得します.
getDate() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
最終更新時刻を返します
getDir() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ディレクトリパスがあれば取得します.
getExtra() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
拡張情報があれば取得します.
getHeaderLevel() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
LHAのヘッダの形式を取得します.
getName() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
エントリ名(ファイル名)を返します.
getNextEntry() - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
LHAファイルエントリを読み込み、エントリデータの最初にストリームを配置します.
getOSType() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
OS情報を取得します.
getSize() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
圧縮前の本来のサイズを返します
getValue() - class jp.gr.java_conf.turner.util.lha.CRC16 のメソッド
CRC16の値を取得します.

H

hashCode() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ハッシュ値を返します.

I

isDirectory() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ディレクトリかどうかを表すフラグを取得.

J

jp.gr.java_conf.turner.util.lha - package jp.gr.java_conf.turner.util.lha
 

L

LhaConstants - interface jp.gr.java_conf.turner.util.lha.LhaConstants.
LHAの各種定数を定義します。
LhaEntry - class jp.gr.java_conf.turner.util.lha.LhaEntry.
このクラスはLHAのファイルエントリ情報を表します。
LhaEntry() - class jp.gr.java_conf.turner.util.lha.LhaEntry のコンストラクタ
LhaEntryを生成します.
LhaEntry(LhaEntry) - class jp.gr.java_conf.turner.util.lha.LhaEntry のコンストラクタ
すでにあるエントリと同名のエントリを生成します.
LhaEntry(String) - class jp.gr.java_conf.turner.util.lha.LhaEntry のコンストラクタ
指定した名前でLhaEntryオブジェクトを生成します.
LhaException - exception jp.gr.java_conf.turner.util.lha.LhaException.
LHA 展開で発生する例外クラス.
LhaException() - class jp.gr.java_conf.turner.util.lha.LhaException のコンストラクタ
 
LhaException(String) - class jp.gr.java_conf.turner.util.lha.LhaException のコンストラクタ
 
LhaInputStream - class jp.gr.java_conf.turner.util.lha.LhaInputStream.
LHAファイルデコーダストリームクラス.
LhaInputStream(InputStream) - class jp.gr.java_conf.turner.util.lha.LhaInputStream のコンストラクタ
LHAデコーダストリームのコンストラクタ.

M

METHOD_LH0 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh0(無圧縮).
METHOD_LH1 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh1.
METHOD_LH2 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh2.
METHOD_LH3 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh3.
METHOD_LH4 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh4.
METHOD_LH5 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh5.
METHOD_LH6 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh6.
METHOD_LH7 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lh7.
METHOD_LZ4 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lz4(無圧縮).
METHOD_LZ5 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lz5.
METHOD_LZS - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
圧縮形式lzs.

O

OSTYPE_95 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプWindows95.
OSTYPE_CPM - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプCP/M.
OSTYPE_FLEX - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプFLEX.
OSTYPE_GENERIC - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプGENERIC(汎用/無指定).
OSTYPE_HUMAN - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプHUMAN68K.
OSTYPE_MAC - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプMacOS.
OSTYPE_MSDOS - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプMS-DOS.
OSTYPE_NT - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプWindowsNT.
OSTYPE_OS2 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプOS/2.
OSTYPE_OS386 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプOS386.
OSTYPE_OS68K - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプOS68K.
OSTYPE_OS9 - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプOS-9.
OSTYPE_RUNSER - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプRUNSER.
OSTYPE_TOWNSOS - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプTOWNSOS.
OSTYPE_UNIX - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプUNIX.
OSTYPE_XOSK - interface jp.gr.java_conf.turner.util.lha.LhaConstants の static 変数
OSタイプXOSK.

R

read() - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
読み込み中のLHAエントリから1バイト読み込みます.
read(byte[]) - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
読み込み中のエントリからデータを読み込みます.
read(byte[], int, int) - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
読み込み中のエントリからデータを読み込みます.
reset() - class jp.gr.java_conf.turner.util.lha.CRC16 のメソッド
CRC16の値を0にリセットします

S

setAttribute(byte) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ファイル属性を設定します(MS-DOS互換).
setComment(String) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ヘッダ内にコメントを設定します.
setCompressedSize(long) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
圧縮後のサイズをエントリに設定します
setCompressMethod(String) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
圧縮のメソッドをエントリに設定します.
setCRC(int) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
CRCの値を設定します.
setDate(long) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
最終更新時刻を設定します
setDir(String) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
ディレクトリパスを設定します.
setExtra(byte[]) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
拡張情報を設定します.
setOSType(char) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
OS情報を設定します.
setSize(long) - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
圧縮前の本来のサイズをエントリに設定します
skip(long) - class jp.gr.java_conf.turner.util.lha.LhaInputStream のメソッド
現在読み込み中のストリームを引数で指定したバイト数だけスキップします.

T

toString() - class jp.gr.java_conf.turner.util.lha.LhaEntry のメソッド
エントリ名(ファイル名)を返します.

U

update(byte) - class jp.gr.java_conf.turner.util.lha.CRC16 のメソッド
CRC16の値を1バイトの引数で更新します。
update(byte[]) - class jp.gr.java_conf.turner.util.lha.CRC16 のメソッド
CRCの値をbyteの配列で更新します。
update(byte[], int, int) - class jp.gr.java_conf.turner.util.lha.CRC16 のメソッド
CRC16の値をバイトの配列で更新します。

A C F G H I J L M O R S T U
LHAライブラリ