How to parse project properties or how to parse files with key-value pair
If a file has content like
1 2 3 4 5 | app.enabled = false app.host = "localhost" app.port = 8080 app.zoneId = "zone_id" app.fulOpId = "test_uk_1" |
which are all key-value pairs, we could use properties.load() to parse it.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | public static Properties loadProperties() { Properties properties = new Properties(); try { InputStream in = Thread.currentThread().getContextClassLoader().getResourceAsStream( "project.properties" ); if (in== null ) { logger.warn( "The project.properties file does not exist" ); } else { properties.load(in); } } catch (Exception e) { logger.error( "Unable to read the project.properties" , e); } return properties; } |
The reason to use Thread.currentThread().getContextClassLoader().getResourceAsStream("project.properties") and why it is different from normal class loader:
1 2 3 | Each class will use its own classloader to load other classes. So if ClassA. class references ClassB. class then ClassB needs to be on the classpath of the classloader of ClassA, or its parents. The thread context classloader is the current classloader for the current thread. An object can be created from a class in ClassLoaderC and then passed to a thread owned by ClassLoaderD. In this case the object needs to use Thread.currentThread().getContextClassLoader() directly if it wants to load resources that are not available on its own classloader. |
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步