|
|||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |
java.lang.Object org.seasar.framework.util.URLUtil
URL
を扱うユーティリティ・クラスです。
フィールドの概要 | |
protected static Map |
CANONICAL_PROTOCOLS
プロトコルを正規化するためのマップ |
メソッドの概要 | |||
static URL |
create(String spec)
String 表現からURL オブジェクトを作成します。 |
||
static URL |
create(URL context,
String spec)
指定されたコンテキスト内の指定された仕様で構文解析することによって、 URL を生成します。 |
||
static String |
decode(String s,
String enc)
特別な符号化方式を使用して application/x-www-form-urlencoded 文字列をデコードします。 |
||
static void |
disableURLCaches()
|
static String |
encode(String s,
String enc)
特定の符号化方式を使用して文字列を application/x-www-form-urlencoded 形式に変換します。 |
static URLConnection |
openConnection(URL url)
URLが参照するリモートオブジェクトへの接続を表す URLConnection オブジェクトを返します。 |
||
static InputStream |
openStream(URL url)
URLをオープンして InputStream を返します。 |
||
static String |
toCanonicalProtocol(String protocol)
プロトコルを正規化して返します。 |
||
static File |
toFile(URL fileUrl)
URLが示すJarファイルの File オブジェクトを返します。 |
クラス java.lang.Object から継承したメソッド |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
フィールドの詳細 |
protected static final Map CANONICAL_PROTOCOLS
メソッドの詳細 |
public static InputStream openStream(URL url)
InputStream
を返します。
url
- URL
InputStream
public static URLConnection openConnection(URL url)
URLConnection
オブジェクトを返します。
url
- URL
URLConnection
オブジェクトpublic static URL create(String spec)
String
表現からURL
オブジェクトを作成します。
spec
- URL
として構文解析されるString
URL
public static URL create(URL context, String spec)
URL
を生成します。
context
- 仕様を構文解析するコンテキストspec
- URL
として構文解析されるString
URL
public static String encode(String s, String enc)
application/x-www-form-urlencoded
形式に変換します。
s
- 変換対象の Stringenc
- サポートされる文字エンコーディングの名前
String
public static String decode(String s, String enc)
application/x-www-form-urlencoded
文字列をデコードします。
s
- デコード対象のString
enc
- サポートされる文字エンコーディングの名前
public static String toCanonicalProtocol(String protocol)
protocol
- プロトコル
public static File toFile(URL fileUrl)
File
オブジェクトを返します。
fileUrl
- JarファイルのURL
File
public static void disableURLCaches()
|
|||||||||||
前のクラス 次のクラス | フレームあり フレームなし | ||||||||||
概要: 入れ子 | フィールド | コンストラクタ | メソッド | 詳細: フィールド | コンストラクタ | メソッド |