I'm working on a Huffman project and I've got the basics sort of working. It counts the characters in a given string and displays them; however, I want it to read from a file rather than manually giving it a string to print.
My code is below, any advice on making it print the contents of a text file would be extremely useful.
import java.util.ArrayList;
public class Main {
public static void main(String[] args) {
    String message = "Hello";
    // Convert the string to char array
    char[] msgChar = message.toCharArray();
    ArrayList<Character> characters = new ArrayList<Character>();
    /*
     * Get a List of all the chars which are present in the string No
     * repeating the characters!
     */
    for (int i = 0; i < msgChar.length; i++) {
        if (!(characters.contains(msgChar[i]))) {
            characters.add(msgChar[i]);
        }
    }
    System.out.println(message);
    System.out.println("");
    /* Count the number of occurrences of Characters */
    int[] countOfChar = new int[characters.size()];
    /* Fill The Array Of Counts with one as base value */
    for (int x = 0; x < countOfChar.length; x++) {
        countOfChar[x] = 0;
    }
    /* Do Actual Counting! */
    for (int i = 0; i < characters.size(); i++) {
        char checker = characters.get(i);
        for (int x = 0; x < msgChar.length; x++) {
            if (checker == msgChar[x]) {
                countOfChar[i]++;
            }
        }
    }
    /* Sort the arrays is descending order */
    for (int i = 0; i < countOfChar.length - 1; i++) {
        for (int j = 0; j < countOfChar.length - 1; j++) {
            if (countOfChar[j] < countOfChar[j + 1]) {
                int temp = countOfChar[j];
                countOfChar[j] = countOfChar[j + 1];
                countOfChar[j + 1] = temp;
                char tempChar = characters.get(j);
                characters.set(j, characters.get(j + 1));
                characters.set(j + 1, tempChar);
            }
        }
    }
    /* Print Out The Frequencies of the Characters */
    for (int x = 0; x < countOfChar.length; x++) {
        System.out.println(characters.get(x) + " - " + countOfChar[x]);
    }
}
}
 
     
    