1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
| import org.apache.commons.lang3.StringUtils; import org.ini4j.Ini; import org.ini4j.Profile; import org.slf4j.Logger; import org.slf4j.LoggerFactory;
import java.io.File; import java.io.IOException; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Set;
/** * ini文件util类 * * @author zhujx * @date 2021/04/16 17:29 */ public class IniUtils {
private static final Logger log = LoggerFactory.getLogger(IniUtils.class);
private static Ini ini;
/** * 初始化ini文件 */ public static void init() { init("src/main/resources/my.ini"); }
/** * 初始化ini文件 * * @param iniPath ini文件路径 * @author zhujx * @date 2021/4/17 13:25 */ public static void init(String iniPath) { try { ini = new Ini(new File(iniPath)); } catch (IOException e) { log.error(e.getMessage(), e); ini = null; } }
/** * 读取ini文件 * * @param sectionKey section的值 * @param keyList key数组 * @return java.util.Map<java.lang.String, java.lang.String> * @author zhujx * @date 2021/4/17 13:25 */ public static Map<String, String> readIni(String sectionKey, List<String> keyList) { if (keyList == null || keyList.isEmpty()) { return null; } Profile.Section section = ini.get(sectionKey); if (section == null) { return null; } Map<String, String> map = new HashMap<>(16); for (String key : keyList) { String value = section.get(key); map.put(key, value); } return map; }
/** * 读取ini文件 * * @param sectionKey section的值 * @param key key * @return java.lang.String * @author zhujx * @date 2021/4/17 13:25 */ public static String readIni(String sectionKey, String key) { if (StringUtils.isBlank(key)) { return null; } Profile.Section section = ini.get(sectionKey); if (section == null) { return null; } return section.get(key); }
/** * 添加值 * * @param origin 包含section key value * @author zhujx * @date 2021/4/17 13:27 */ public static void creatIni(Map<String, Map<String, String>> origin) throws IOException { //将文件内容保存到ini对象中 Set<String> sectionKeySet = origin.keySet(); for (String sectionKey : sectionKeySet) { if (StringUtils.isBlank(sectionKey)) { continue; } Map<String, String> keyValue = origin.get(sectionKey); Set<String> keySet = keyValue.keySet(); for (String key : keySet) { if (StringUtils.isBlank(key)) { continue; } String value = keyValue.get(key); if (StringUtils.isBlank(value)) { value = ""; } ini.add(sectionKey, key, value); } } //将文件内容保存到文件中 ini.store(); }
/** * 添加值 * * @param sectionKey sectionKey * @param key key * @param value value * @author zhujx * @date 2021/4/17 13:27 */ public static void creatIni(String sectionKey, String key, String value) throws IOException { //将文件内容保存到ini对象中 if (StringUtils.isBlank(sectionKey)) { return; } if (StringUtils.isBlank(key)) { return; } Profile.Section section = ini.get(sectionKey); if (section != null) { String oldValue = section.get(key); if (oldValue != null) { section.remove(key); } } ini.add(sectionKey, key, value); //将文件内容保存到文件中 ini.store(); }
/** * 清除ini * * @author zhujx * @date 2021/4/17 13:28 */ public static void clean() { ini = null; } }
|