So I'm working on a project where we created a supervised learner in Java. It uses a weight .txt file with about 15 lines (one number per line) that gets opened and closed twice per run. Opening and closing happens directly before and directly after reading/writing.
Because of the way the code is structured (not our decision), I cannot run our training code in a loop. So I setup a batch script that simply iterates over a loop, during each iteration running our code (and thus updating our file), waiting for a few seconds, and then repeating.
The problem is that every few hundred runs or so randomly, all the contents of our file gets deleted. The file still exists, but all the content is clear. Sometimes it'll happen on the 100th run, sometimes it'll happen on the 200th, sometimes on the 3rd.
Assuming it's not our code that is the problem, what could possibly cause this? Or possible fix?
Specs:
Windows 7
Making 'java' calls to execute the .class file from a .bat batch file
modifies a .txt file in the same directory
Any help is greatly appreciated.
close(). – trashgod Mar 22 '11 at 2:14