ニコニコフレームワーク/その他の機能

StringUtils

文字列操作に関係したユーティティメソッドを提供します。

メソッド説明
public static boolean isEmpty(String value)文字列がnullまたは空文字列であるかを調べます。
public static boolean isNotEmpty(String value)文字列がnullまたは空文字列でないかを調べます。

IOUtils

ファイル操作などI/Oに関係したユーティリティメソッドを提供します。

メソッド説明
public static void copy(InputStream in, OutputStream out)InputStreamから読み込んだデータをOutputStreamにコピーします。
public static String read(InputStream in)InputStreamのデータをUTF-8の文字列として返却します。
public static String read(InputStream in, String charset)InputStreamのデータを指定した文字コードの文字列として返却します。
public static void closeQuietly(Closeable closeable)Closeableを強制的にクローズします。例外が発生しても握りつぶします。

ServletUtil

HttpServletRequest、HttpServletResponseなどを取得するためのユーティリティメソッドを提供します。

メソッド説明
public static HttpServletRequest getRequest()HttpServletRequestを取得します。
public static HttpServletResponse getResponse()HttpServletResponse を取得します。
public static HttpSession getSession()HttpSessionを取得します。