String in quotes

Hello I would like to know how to put a String VARIABLE in quotes.

If I have

String s="word";

When i do a print the output is: word

I'd like the output were: "word"

I know i could create the String doing

String s="\"word\"";

But I can't. I've to work with s variable.

Thank you very much for your help,

joan

[423 byte] By [brufusa] at [2007-10-2 7:32:47]
# 1
"\"" + s+ "\""
CeciNEstPasUnProgrammeura at 2007-7-16 21:12:46 > top of Java-index,Java Essentials,Java Programming...
# 2
Thank you very much!You can't imagine how long I've been trying...stupid things....
brufusa at 2007-7-16 21:12:46 > top of Java-index,Java Essentials,Java Programming...