解决从springboot配置文件application.properties获取中文乱码
这里因为自带的iso编码格式
需要进行如下操作
新增两个文件重写
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 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | package com.java.file.config; import org.springframework.boot.origin.Origin; import org.springframework.boot.origin.OriginTrackedValue; import org.springframework.boot.origin.TextResourceOrigin; import org.springframework.core.io.Resource; import org.springframework.util.Assert; import java.io.Closeable; import java.io.IOException; import java.io.InputStreamReader; import java.io.LineNumberReader; import java.nio.charset.StandardCharsets; import java.util.LinkedHashMap; import java.util.Map; /** * @Description: * @Author: qiuxie * @Create: 2023/7/10 10:57 */ public class CustomizedOriginTrackedPropertiesLoader { private final Resource resource; /** * Create a new {@link CustomizedOriginTrackedPropertiesLoader} instance. * @param resource the resource of the {@code .properties} data */ CustomizedOriginTrackedPropertiesLoader(Resource resource) { Assert.notNull(resource, "Resource must not be null" ); this .resource = resource; } /** * Load {@code .properties} data and return a map of {@code String} -> * {@link OriginTrackedValue}. * @return the loaded properties * @throws IOException on read error */ Map<String, OriginTrackedValue> load() throws IOException { return load( true ); } /** * Load {@code .properties} data and return a map of {@code String} -> * {@link OriginTrackedValue}. * @param expandLists if list {@code name[]=a,b,c} shortcuts should be expanded * @return the loaded properties * @throws IOException on read error */ Map<String, OriginTrackedValue> load( boolean expandLists) throws IOException { try (CharacterReader reader = new CharacterReader( this .resource)) { Map<String, OriginTrackedValue> result = new LinkedHashMap<>(); StringBuilder buffer = new StringBuilder(); while (reader.read()) { String key = loadKey(buffer, reader).trim(); if (expandLists && key.endsWith( "[]" )) { key = key.substring( 0 , key.length() - 2 ); int index = 0 ; do { OriginTrackedValue value = loadValue(buffer, reader, true ); put(result, key + "[" + (index++) + "]" , value); if (!reader.isEndOfLine()) { reader.read(); } } while (!reader.isEndOfLine()); } else { OriginTrackedValue value = loadValue(buffer, reader, false ); put(result, key, value); } } return result; } } private void put(Map<String, OriginTrackedValue> result, String key, OriginTrackedValue value) { if (!key.isEmpty()) { result.put(key, value); } } private String loadKey(StringBuilder buffer, CharacterReader reader) throws IOException { buffer.setLength( 0 ); boolean previousWhitespace = false ; while (!reader.isEndOfLine()) { if (reader.isPropertyDelimiter()) { reader.read(); return buffer.toString(); } if (!reader.isWhiteSpace() && previousWhitespace) { return buffer.toString(); } previousWhitespace = reader.isWhiteSpace(); buffer.append(reader.getCharacter()); reader.read(); } return buffer.toString(); } private OriginTrackedValue loadValue(StringBuilder buffer,CharacterReader reader, boolean splitLists) throws IOException { buffer.setLength( 0 ); while (reader.isWhiteSpace() && !reader.isEndOfLine()) { reader.read(); } TextResourceOrigin.Location location = reader.getLocation(); while (!reader.isEndOfLine() && !(splitLists && reader.isListDelimiter())) { buffer.append(reader.getCharacter()); reader.read(); } Origin origin = new TextResourceOrigin( this .resource, location); return OriginTrackedValue.of(buffer.toString(), origin); } /** * Reads characters from the source resource, taking care of skipping comments, * handling multi-line values and tracking {@code '\'} escapes. */ private static class CharacterReader implements Closeable { private static final String[] ESCAPES = { "trnf" , "\t\r\n\f" }; private final LineNumberReader reader; private int columnNumber = - 1 ; private boolean escaped; private int character; CharacterReader(Resource resource) throws IOException { this .reader = new LineNumberReader( new InputStreamReader(resource.getInputStream(), StandardCharsets.UTF_8)); } @Override public void close() throws IOException { this .reader.close(); } boolean read() throws IOException { return read( false ); } boolean read( boolean wrappedLine) throws IOException { this .escaped = false ; this .character = this .reader.read(); this .columnNumber++; if ( this .columnNumber == 0 ) { skipLeadingWhitespace(); if (!wrappedLine) { skipComment(); } } if ( this .character == '\\' ) { this .escaped = true ; readEscaped(); } else if ( this .character == '\n' ) { this .columnNumber = - 1 ; } return !isEndOfFile(); } private void skipLeadingWhitespace() throws IOException { while (isWhiteSpace()) { this .character = this .reader.read(); this .columnNumber++; } } private void skipComment() throws IOException { if ( this .character == '#' || this .character == '!' ) { while ( this .character != '\n' && this .character != - 1 ) { this .character = this .reader.read(); } this .columnNumber = - 1 ; read(); } } private void readEscaped() throws IOException { this .character = this .reader.read(); int escapeIndex = ESCAPES[ 0 ].indexOf( this .character); if (escapeIndex != - 1 ) { this .character = ESCAPES[ 1 ].charAt(escapeIndex); } else if ( this .character == '\n' ) { this .columnNumber = - 1 ; read( true ); } else if ( this .character == 'u' ) { readUnicode(); } } private void readUnicode() throws IOException { this .character = 0 ; for ( int i = 0 ; i < 4 ; i++) { int digit = this .reader.read(); if (digit >= '0' && digit <= '9' ) { this .character = ( this .character << 4 ) + digit - '0' ; } else if (digit >= 'a' && digit <= 'f' ) { this .character = ( this .character << 4 ) + digit - 'a' + 10 ; } else if (digit >= 'A' && digit <= 'F' ) { this .character = ( this .character << 4 ) + digit - 'A' + 10 ; } else { throw new IllegalStateException( "Malformed \\uxxxx encoding." ); } } } boolean isWhiteSpace() { return ! this .escaped && ( this .character == ' ' || this .character == '\t' || this .character == '\f' ); } boolean isEndOfFile() { return this .character == - 1 ; } boolean isEndOfLine() { return this .character == - 1 || (! this .escaped && this .character == '\n' ); } boolean isListDelimiter() { return ! this .escaped && this .character == ',' ; } boolean isPropertyDelimiter() { return ! this .escaped && ( this .character == '=' || this .character == ':' ); } char getCharacter() { return ( char ) this .character; } TextResourceOrigin.Location getLocation() { return new TextResourceOrigin.Location( this .reader.getLineNumber(), this .columnNumber); } } } |
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 | package com.java.file.config; import org.springframework.boot.env.OriginTrackedMapPropertySource; import org.springframework.boot.env.PropertySourceLoader; import org.springframework.core.env.PropertySource; import org.springframework.core.io.Resource; import org.springframework.core.io.support.PropertiesLoaderUtils; import java.io.IOException; import java.util.Collections; import java.util.List; import java.util.Map; /** * @Description: * @Author: qiuxie * @Create: 2023/7/10 11:21 */ public class MyPropertiesPropertySourceLoader implements PropertySourceLoader { private static final String XML_FILE_EXTENSION = ".xml" ; @Override public String[] getFileExtensions() { return new String[] { "properties" , "xml" }; } @Override public List<PropertySource<?>> load(String name, Resource resource) throws IOException { Map<String, ?> properties = loadProperties(resource); if (properties.isEmpty()) { return Collections.emptyList(); } return Collections .singletonList( new OriginTrackedMapPropertySource(name, Collections.unmodifiableMap(properties), true )); } @SuppressWarnings ({ "unchecked" , "rawtypes" }) private Map<String, ?> loadProperties(Resource resource) throws IOException { String filename = resource.getFilename(); if (filename != null && filename.endsWith(XML_FILE_EXTENSION)) { return (Map) PropertiesLoaderUtils.loadProperties(resource); } return new CustomizedOriginTrackedPropertiesLoader(resource).load(); } } |
将自定义的类加载到容器中
1 2 | org.springframework.boot.env.PropertySourceLoader=\ com.java.file.config.MyPropertiesPropertySourceLoader |
代码部分
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | @Value ( "${bank.name.list}" ) private List<String> listBankNames; private boolean isBankNameFlag(String bankName) { boolean bankNameFlag = false ; log.info( "从SpringCloudConfig获取的数据:{}" , listBankNames); for (String listBankName : listBankNames) { if (bankName.contains(listBankName)) { bankNameFlag = true ; } } return bankNameFlag; } |
最后看下默认的编码格式
标签:
springboot
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· C#/.NET/.NET Core技术前沿周刊 | 第 29 期(2025年3.1-3.9)
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异