Dear all,
I have been told there is something wrong
with the following code. Could someone
please shed a light on this, I'd be greatly
thankful to your help.
VM
----------------------------------------------------
Identify the problem in the following code:
// Retry three times on failure to open file.
int retryCount = -1;
String line = null;
do {
try {
BufferedReader br = new BufferedReader(
new InputStreamReader(new FileInputStream("input.txt")));
line = br.readLine();
br.close();
} catch (IOException e) {
// Wait a little bit.
Thread.currentThread().sleep(250);
if (retryCount == -1) {
// Start the count at three if this is the first occurrence.
retryCount = 3;
} else {
// Okay, looks like somebody has tried before.
retryCount--;
}
}
} while (retryCount > 0);