empty string vs null string

What is the difference between empty string and null string?
[67 byte] By [sandipan_16a] at [2007-11-26 12:53:55]
# 1
When a String reference is set to null it does not point to any String at all. When a String reference point to an empty String it errr.... well it points to an empty String, that is to say a String containing no characters. So null is not a String but an empty String is.
sabre150a at 2007-7-7 16:45:11 > top of Java-index,Java Essentials,Java Programming...
# 2
There's no such thing as a null String. Only references can be null, not objects.A null refernce is a reference that doesn't point to any object. An empty String is a String object that contains no characters.
jverda at 2007-7-7 16:45:11 > top of Java-index,Java Essentials,Java Programming...