お気軽全角判定
文字列の中に全角文字列が含まれているかを判定します。
1文字でも含まれていればtrue、1文字も含まれていなければfalse
public static boolean containsZen(String s) throws UnsupportedEncodingException { for (int i = 0; i < s.length(); i++) { String s1 = s.substring(i, i + 1); if (URLEncoder.encode(s1,"MS932").length() >= 4) { return true; } } return false; }
参考にしたのは、
プログラマメモ2: お気軽全角判定
http://programamemo2.blogspot.com/2007/05/blog-post.html