print out object variable values



I have a class with 50 string variables.
I need to see in my main program which ones are set to some values.
To do this i need to print them to the screen. I'm getting fed up writting
System.out.println(myObject.getThisString);
System.out.println(myObject.getThatString)
......
As i have to do this few times.

Is there an easy way to print all the values in an object?

Thx


.