The output of below program:
public class TestClass { public static void main(final String[] args){ String token = \"null\\n\"; token.tr
Strings are immutable. Change
token.trim();
to
token = token.trim();