You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
524 B
Java

Listing All Available Unicode to Character Set Converters
public static void main(String args[])
{
Map map = Charset.availableCharsets();
Iterator it = map.keySet().iterator();
while (it.hasNext()) {
// Get charset name
String charsetName = (String)it.next();
System.out.println("Charset Name "+charsetName);
// Get charset
Charset charset = Charset.forName(charsetName);
System.out.println("Charset "+charset);
}
}