String sentence = JOptionPane.showInputDialog (null, "Write a sentence.");    
String letter = JOptionPane.showInputDialog(null, "Write a letter");
while (true) {
    if (letter.equals("Stop"))
        System.exit(0);    
    //to calculate number of specific character
    else {
        int countLetter = 0;
        int L = letter.length();
        for (int i = 0; i < L; i++) {
            if ((letter.charAt(i) = .....))     
                countLetter++;
        }
    }
}
Is it possible to replace the dots to make the program count how many times the given letter occures in the sentence written in the first string?
 
     
     
     
    