Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: List the available character sets in charset objects

Java Basic: Exercise-40 with Solution

Write a Java program to list the available character sets in charset objects.

Sample Solution:

Java Code:

import java.nio.charset.Charset;
public class Exercise40 {
  public static void main(String[] args) {
	System.out.println("List of available character sets: ");  
    for (String str : Charset.availableCharsets().keySet()) {
      System.out.println(str);
    }
  }
}

Sample Output:

List of available character sets:                                                                             
Big5                                                                                                      
Big5-HKSCS                                                                                                    
CESU-8                                                                                                      
EUC-JP                                                                                                      
EUC-KR                                                                                                      
GB18030                                                                                                      
GB2312                                                                                                      
GBK                                                                                                      
IBM-Thai                                                                                                      
IBM00858                                                                                                      
IBM01140          
-----
x-windows-950                                                                                                 
x-windows-iso2022jp 

Flowchart:

Flowchart: Java exercises: List the available character sets in charset objects

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to create and display unique three-digit number using 1, 2, 3, 4. Also count how many three-digit numbers are there.
Next: Write a Java program to print the ascii value of a given character.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe