55 lines
1.0 KiB
Java
Executable File
55 lines
1.0 KiB
Java
Executable File
package bdf.file;
|
|
|
|
import java.io.File;
|
|
import java.io.FileOutputStream;
|
|
import java.io.IOException;
|
|
|
|
import bdf.data.BdfDatabase;
|
|
import bdf.types.BdfObject;
|
|
import bdf.util.FileHelpers;
|
|
|
|
public class BdfFileManager extends BdfObject
|
|
{
|
|
protected String path;
|
|
|
|
private static BdfDatabase init(String path)
|
|
{
|
|
// Get the file handler
|
|
File file = new File(path);
|
|
|
|
// Create the parent directories
|
|
file.getParentFile().mkdirs();
|
|
|
|
// Return the files contents as a database
|
|
return new BdfDatabase(FileHelpers.readAllIgnoreErrors(path));
|
|
}
|
|
|
|
public BdfFileManager(String path) {
|
|
super(init(path));
|
|
this.path = path;
|
|
}
|
|
|
|
public void saveDatabase(String path)
|
|
{
|
|
try
|
|
{
|
|
// Get the database file for output
|
|
FileOutputStream out = new FileOutputStream(path);
|
|
|
|
// Write the database to the file
|
|
out.write(this.serialize().getBytes());
|
|
|
|
// Close the file output stream
|
|
out.close();
|
|
}
|
|
|
|
catch(IOException e) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
public void saveDatabase() {
|
|
this.saveDatabase(this.path);
|
|
}
|
|
}
|