MoparClassic/GameServer/src/msc/gs/util/ObjectLoader.java

22 lines
566 B
Java
Raw Normal View History

package msc.gs.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.ObjectInputStream;
import java.util.zip.GZIPInputStream;
import msc.config.Config;
public class ObjectLoader {
public static Object loadObject(String file) {
try {
ObjectInputStream in = new ObjectInputStream(new GZIPInputStream(new FileInputStream(new File(Config.CONF_DIR, "data/ground.gz"))));
Object temp = in.readObject();
in.close();
return temp;
} catch (Exception e) {
Logger.error(e);
return null;
}
}
}