jp.go.nict.langrid.commons.codec
クラス URLCodec

java.lang.Object
  上位を拡張 jp.go.nict.langrid.commons.codec.URLCodec

public class URLCodec
extends Object

URLEncoder/URLDecoderを利用するFacadeクラス。 常にUTF-8を使用してエンコード/デコードを行う。

バージョン:
$Revision: 8770 $
作成者:
Takao Nakaguchi, $Author: Takao Nakaguchi $

コンストラクタの概要
URLCodec()
           
 
メソッドの概要
static String decode(String value)
          UTF-8でURLデコードを行う。
static String encode(String value)
          UTF-8でURLエンコードを行う。
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

URLCodec

public URLCodec()
メソッドの詳細

encode

public static String encode(String value)
UTF-8でURLエンコードを行う。 UTF-8がサポートされていない場合、RuntimeExceptionを投げる。

パラメータ:
value - エンコードする文字列
戻り値:
エンコード結果

decode

public static String decode(String value)
UTF-8でURLデコードを行う。 UTF-8がサポートされていない場合、RuntimeExceptionを投げる。

パラメータ:
value - デコードする文字列
戻り値:
デコード結果