i try to url validation. but UrlValidator is does not support unicode. here is code
public static boolean isValidHttpUrl(String url) { String[] schemes =
It doesn't support IDN. You need to convert URL to Punycode first. Try this,
isValid = isValidHttpUrl(IDN.toASCII(url));