I\'ve been trying to get the string initialize, but to no avail. I have tried all of the solutions I have come across and I am not sure whether it is because of my ineptness or
If I understand your question at all, than keep in mind you can't do this in Java:
String str = "here is some random text";
What you can do is
String str = "here is some " + "random text";
In other words - can't break a string at the end of the line, gotta close it and use a + sign.
+