}
private void prepareDB() {
try {
File src = new ResourceLocator("configDB.script.org").getFile();
File dst = new ResourceLocator("configDB.script").getFile();
InputStream in = new FileInputStream(src);
OutputStream out = new FileOutputStream(dst);
// Transfer bytes from in to out
byte[] buf = new byte[1024];