Whoops. Sorry about that, didn't put my latest version of that last method.
Code:
public String wrapperToString(Integer u) throws Exception
{
String str = u.toString();
String iwResult3 - new String(str);
System.out.println(str);
return iwResult3;
}
I'm at a lost. I checked the Java Doc on toString, and I'm not quite sure what I'm missing. Surely it's how I'm pushing it into the method? I guess I should do it a bit different from my primitive data types to string methods?