After click a button, all the resourcs managed by CVS will be
checked out and the information printed on STDOUT will be save into a
file named "log.txt"; at the same time, this log file will be read so
that the content can be displayed in a UI control such as TextArea.
Because the process of "checkout" usually lasts several minutes, and
I don't like users wait too long untill the checkout process finished,
I want to read the file simultaneously when it's being written. Then
how can I solve it?
GWT is a client side technology. It cannot access CVS or any other
resources directly.
You will need to connect to CVS on the server end, and then use GWT to
connect to the server.