nohup

Java program stdout and detaching from foreground

Hi, I have a java program, let's say Test.class. When I execute java Test the program ask for a Password and then continute. The problem is that the stdout is redirected to a log and the program is launched with the & ( we are on UNIX). How can i interact with this program launched java Test & with the stdin and stdout? One possible...