de.regnis.q.sequence.line.QSequenceLineRandomAccessFileFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javasvn Show documentation
Show all versions of javasvn Show documentation
The only pure Java Subversion library in the world
package de.regnis.q.sequence.line;
import java.io.*;
import java.util.*;
/**
* @author Marc Strapetz
*/
public class QSequenceLineRandomAccessFileFactory {
// Static =================================================================
private static final Map fileToRaFile = new HashMap();
static {
Runtime.getRuntime().addShutdownHook(new Thread() {
public void run() {
for (Iterator it = fileToRaFile.keySet().iterator(); it.hasNext();) {
final File file = (File)it.next();
final RandomAccessFile raFile = (RandomAccessFile)fileToRaFile.get(file);
try {
raFile.close();
file.delete();
}
catch (IOException ex) {
}
}
super.run();
}
});
}
public static RandomAccessFile createRandomAccessFile(File file, String mode) throws FileNotFoundException {
final RandomAccessFile raFile = new RandomAccessFile(file, mode);
fileToRaFile.put(file, raFile);
return raFile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy