If you have a Java variable named xyz. Then later on I define a string which has the value of the named variable I want to play with.
String x=\"xyz\";
The short answer is that you can't do something like this. That just isn't the way the Java language works. The long answer is that you might be able to simulate something using the Reflection API.