IDN.toASCII and IDN.toUnicode : IDN « Network Protocol « Java






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