HashSet をサーバー ディレクトリに格納したいと考えています。しかし、私は今それを .bin ファイルにしか保存できませんでした。しかし、HashSet 内のすべてのキーを .txt ファイルに出力するにはどうすればよいでしょうか?
static Set<String> MapLocation = new HashSet<String>();
try {
SLAPI.save(MapLocation, "MapLocation.bin");
} catch (Exception ex) {
}
public static void save(Object obj, String path) throws Exception {
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(
path));
oos.writeObject(obj);
oos.flush();
oos.close();
}