updating already flushed data
Using OutputWriter, is there anyway to update already flushed data ?
Suppose i have run a java program from command prompt . Depending upon the notification from another program, this program has to write
"current status=1" to the command line.Now , when the next notification from the other program comes,I want to write "current status = 2" to the command line. but rather than adding a new line saying "currentstatus = 2",
i just want to change the "1" in "current status=1" to "2".
that is always, there will be only one line of information, but the data in that will change over time
Is there anyway to do it?
Thanks and regards
Joj

