IDN.toASCII and IDN.toUnicode : IDN « Network Protocol « Java
- Java
- Network Protocol
- IDN
IDN.toASCII and IDN.toUnicode
import java.net.IDN;
public class IDNConverter {
public static void main(String[] args) {
IDN.toASCII("");
IDN.toUnicode("");
}
}
Related examples in the same category