|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object org.seasar.util.io.PropertiesUtil
public abstract class PropertiesUtil
Properties
用のユーティリティクラスです。
コンストラクタの概要 | |
---|---|
PropertiesUtil()
|
メソッドの概要 | |
---|---|
static void |
load(Properties props,
File file)
プラットフォームデフォルトエンコーディングでファイルを読み込んで Properties にロードします(例外処理はラップします)。 |
static void |
load(Properties props,
File file,
String encoding)
指定のエンコーディングでファイルを読み込んで Properties にロードします(例外処理はラップします)。 |
static void |
load(Properties props,
InputStream in)
Properties.load(InputStream) の例外処理をラップします。 |
static void |
load(Properties props,
Reader reader)
Properties.load(Reader) の例外処理をラップします。 |
static void |
load(Properties props,
String path)
コンテキストクラスローダからリソースを読み込んで Properties にロードします(例外処理はラップします)。 |
static void |
load(Properties props,
URL url)
URL を読み込んでProperties にロードします(例外処理はラップします)。 |
static void |
store(Properties props,
File file,
String comments)
プラットフォームデフォルトエンコーディングでファイルを書き出して Properties をストアします(例外処理はラップします)。 |
static void |
store(Properties props,
File file,
String encoding,
String comments)
指定のエンコーディングでファイルを書き出して Properties をストアします(例外処理はラップします)。 |
static void |
store(Properties props,
OutputStream out,
String comments)
Properties.store(OutputStream, String) の例外処理をラップします。 |
static void |
store(Properties props,
Writer writer,
String comments)
Properties.store(Writer, String) の例外処理をラップします。 |
クラス java.lang.Object から継承されたメソッド |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
コンストラクタの詳細 |
---|
public PropertiesUtil()
メソッドの詳細 |
---|
public static void load(Properties props, InputStream in)
Properties.load(InputStream)
の例外処理をラップします。
入力ストリームはクローズされません。
props
- プロパティセット。nullであってはいけませんin
- 入力ストリーム。nullであってはいけませんpublic static void load(Properties props, Reader reader)
Properties.load(Reader)
の例外処理をラップします。
入力リーダはクローズされません。
props
- プロパティセット。nullであってはいけませんreader
- 入力リーダ。nullであってはいけませんpublic static void load(Properties props, File file, String encoding)
Properties
にロードします(例外処理はラップします)。
props
- プロパティセット。nullであってはいけませんfile
- ファイル。nullであってはいけませんencoding
- エンコーディング。nullや空文字列であってはいけませんpublic static void load(Properties props, File file)
Properties
にロードします(例外処理はラップします)。
props
- プロパティセット。nullであってはいけませんfile
- ファイル。nullであってはいけませんpublic static void load(Properties props, URL url)
URL
を読み込んでProperties
にロードします(例外処理はラップします)。
props
- プロパティセット。nullであってはいけませんurl
- URL。nullであってはいけませんpublic static void load(Properties props, String path)
Properties
にロードします(例外処理はラップします)。
props
- プロパティセット。nullであってはいけませんpath
- リソースのパス。nullや空文字列であってはいけませんpublic static void store(Properties props, OutputStream out, String comments)
Properties.store(OutputStream, String)
の例外処理をラップします。
出力ストリームはクローズされません。
props
- プロパティセット。nullであってはいけませんout
- 出力ストリーム。nullであってはいけませんcomments
- コメントpublic static void store(Properties props, Writer writer, String comments)
Properties.store(Writer, String)
の例外処理をラップします。
出力ライタはクローズされません。
props
- プロパティセット。nullであってはいけませんwriter
- 出力ライタ。nullであってはいけませんcomments
- コメントpublic static void store(Properties props, File file, String encoding, String comments)
Properties
をストアします(例外処理はラップします)。
props
- プロパティセット。nullであってはいけませんfile
- ファイル。nullであってはいけませんencoding
- エンコーディング。nullや空文字列であってはいけませんcomments
- コメントpublic static void store(Properties props, File file, String comments)
Properties
をストアします(例外処理はラップします)。
props
- プロパティセット。nullであってはいけませんfile
- ファイル。nullであってはいけませんcomments
- コメント
|
||||||||||
前のクラス 次のクラス | フレームあり フレームなし | |||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |