You're getting the reference to the string and the actual string confused. Immutable describes the actual string object and means you can't change the value of that object. Final refers to the reference to a string object and means that you can't change what string that reference is pointing to.
Consider the following code:
public static String str = "happy";
...
str = "sad";
This code creates two string objects, one that contains the value "happy" and one that contains the value "sad". Neither of these objects (because Strings are immutable) can be changed. str is a reference and can be made to point to either of these objects; however, were we to change the first line of code to: public static final String str = "happy"; str = "sad" would no longer be legal. Because we have changed str to be a final variable, it cannot be made to point to different objects.