本文整理汇总了Java中logbook.util.BeanUtils.writeObject方法的典型用法代码示例。如果您正苦于以下问题:Java BeanUtils.writeObject方法的具体用法?Java BeanUtils.writeObject怎么用?Java BeanUtils.writeObject使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类logbook.util.BeanUtils
的用法示例。
在下文中一共展示了BeanUtils.writeObject方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: remove
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* 建造ドックの投入資源を削除します
*
* @param dock ドック
* @throws IOException IOException
*/
public static void remove(String dock) throws IOException {
if (mapBean != null) {
mapBean.getKdockMap().remove(dock);
}
BeanUtils.writeObject(AppConstants.KDOCK_CONFIG_FILE, mapBean);
}
示例2: storeItem
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* @throws IOException
*/
private static void storeItem() throws IOException {
Map<Long, Integer> map = new HashMap<Long, Integer>();
for (Entry<Long, ItemDto> entry : ItemContext.get().entrySet()) {
map.put(entry.getKey(), entry.getValue().getId());
}
BeanUtils.writeObject(AppConstants.ITEM_CONFIG_FILE, map);
}
示例3: store
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* 設定ファイルに書き込みます
*/
public static void store() throws IOException {
Map<Integer, ItemDto> map = new HashMap<Integer, ItemDto>();
for (Integer id : Item.keySet()) {
map.put(id, Item.get(id));
}
BeanUtils.writeObject(AppConstants.ITEM_MST_CONFIG_FILE, map);
}
示例4: store
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* 設定ファイルに書き込みます
*/
public static void store() throws IOException {
Set<String> shipids = Ship.keySet();
Map<String, ShipInfoDto> map = new HashMap<String, ShipInfoDto>();
for (String key : shipids) {
ShipInfoDto ship = Ship.get(key);
map.put(key, ship);
}
BeanUtils.writeObject(AppConstants.SHIP_CONFIG_FILE, map);
}
示例5: remove
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* 建造ドックの投入資源を削除します
*
* @param dock ドック
* @throws IOException IOException
*/
public static void remove(String dock) throws IOException {
if (mapBean != null) {
mapBean.getKdockMap().remove(dock);
}
BeanUtils.writeObject(AppConstants.KDOCK_CONFIG_FILE, mapBean);
}
示例6: store
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* 設定ファイルに書き込みます
*/
public static void store() throws IOException {
Map<Long, Integer> map = new HashMap<Long, Integer>();
for (Entry<Long, ItemDto> entry : GlobalContext.getItemMap().entrySet()) {
map.put(entry.getKey(), entry.getValue().getId());
}
BeanUtils.writeObject(AppConstants.ITEM_CONFIG_FILE, map);
}
示例7: storeLevel
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* @throws IOException
*/
private static void storeLevel() throws IOException {
Map<Long, Integer> map = new HashMap<Long, Integer>();
map.putAll(ItemContext.level());
BeanUtils.writeObject(AppConstants.ITEM_LEVEL_CONFIG_FILE, map);
}
示例8: storeALv
import logbook.util.BeanUtils; //导入方法依赖的package包/类
/**
* @throws IOException
*/
private static void storeALv() throws IOException {
Map<Long, Integer> map = new HashMap<Long, Integer>();
map.putAll(ItemContext.alv());
BeanUtils.writeObject(AppConstants.ITEM_ALV_CONFIG_FILE, map);
}