There is a class Properties (Java.util.Properties) in Java, which is mainly used to read Java configuration files and store some values that may need to be changed in properties for configuration, usually as .properties files. , in fact, it is an ordinary text file. The format of the file content is the "key=value" format, and the text annotation information can be annotated with "#". Try to use UTF-8 format for storage. The classes provided by jdk itself have shortcomings, so we usually use the commons-configuration framework for analysis.
1.1.1. Properties class diagram
Properties configurationfileCommonly used methods
1. Use the getResourceAsStream(String name) method of the java.lang.Class class
InputStream in = getClass().getResourceAsStream("File name");
2. Use stream operation
InputStream in = new BufferedInputStream(new FileInputStream(filepath));
1.1.3. Disadvantages1. The format must be k=v without spaces.
2. Changed values cannot be refreshed regularly(For example, the online environment modification value program still reads the old value ). You need to write your own program control.
#3. The values are all of the string type and need to be converted according to needs when obtained by yourself.
Based on the above shortcomings, we can use the org.apache.commons.configuration class to solve the problem. The following is read in daily development propertiesEncapsulation.
1.1.4. Use of commons-configuration framework1.1.4.1. mavenPackage import
<dependency> <groupId>commons-configuration</groupId> <artifactId>commons-configuration</artifactId> <version>1.8</version> </dependency>
package cn.xhgg.common.configuration; import java.util.HashMap; import java.util.Iterator; import java.util.List; import java.util.Map; import java.util.concurrent.ConcurrentHashMap; import org.apache.commons.configuration.ConfigurationException; import org.apache.commons.configuration.PropertiesConfiguration; import org.apache.commons.configuration.reloading.FileChangedReloadingStrategy; import org.apache.commons.lang.StringUtils; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * 这个类型的配置,文件首先需要有配置文件,其次配置文件应该写入该类,再则配置文件的编码方式必须是UTF8 */ public class PropertiesConfigUtil { private static Logger log = LoggerFactory.getLogger(PropertiesConfigUtil.class); public static final String PROPS_SUFFIX = ".properties"; private static Map<String, PropertiesConfiguration> configMap = new ConcurrentHashMap<String, PropertiesConfiguration>(); private static PropertiesConfiguration getConfig(String configName) { //去除空格 configName = configName.trim(); //有后缀使用后缀 没后缀 添加后缀 String configSig = StringUtils.endsWith(configName, PROPS_SUFFIX) ? configName : configName+PROPS_SUFFIX; if (configMap.containsKey(configSig)) { return configMap.get(configSig); } PropertiesConfiguration config = null; try { config=new PropertiesConfiguration(); config.setEncoding("UTF-8"); config.load(configSig); //默认五秒检查一次 config.setReloadingStrategy(new FileChangedReloadingStrategy()); config.setThrowExceptionOnMissing(true); configMap.put(configSig, config); } catch (ConfigurationException e) { e.printStackTrace(); } return config; } public static Map<String, String> getKeyValuePairs(String configSig) { PropertiesConfiguration config = getConfig(configSig); if (config == null) { return null; } Iterator<String> iters = config.getKeys(); Map<String, String> retMap = new HashMap<String, String>(); while (iters.hasNext()) { String beforeKey = iters.next(); if (retMap.containsKey(beforeKey)) { log.warn(configSig + " configKey:" + beforeKey + " repeated!!"); } retMap.put(beforeKey, config.getString(beforeKey)); } return retMap; } /** * 通过PropertiesConfiguration取得参数的方法 * <p> * * @return 。 */ static public String getString(String configSig, String key) { return getConfig(configSig).getString(key); } static public String getString(String configSig, String key, String defaultValue) { return getConfig(configSig).getString(key, defaultValue); } static public int getInt(String configSig, String key) { return getConfig(configSig).getInt(key); } static public int getInt(String configSig, String key, int defaultValue) { return getConfig(configSig).getInt(key, defaultValue); } static public boolean getBoolean(String configSig, String key) { return getConfig(configSig).getBoolean(key); } static public boolean getBoolean(String configSig, String key, boolean defaultValue) { return getConfig(configSig).getBoolean(key, defaultValue); } static public double getDouble(String configSig, String key) { return getConfig(configSig).getDouble(key); } static public double getDouble(String configSig, String key, double defaultValue) { return getConfig(configSig).getDouble(key, defaultValue); } static public float getFloat(String configSig, String key) { return getConfig(configSig).getFloat(key); } static public float getFloat(String configSig, String key, float defaultValue) { return getConfig(configSig).getFloat(key, defaultValue); } static public long getLong(String configSig, String key) { return getConfig(configSig).getLong(key); } static public long getLong(String configSig, String key, long defaultValue) { return getConfig(configSig).getLong(key, defaultValue); } static public short getShort(String configSig, String key) { return getConfig(configSig).getShort(key); } static public short getShort(String configSig, String key, short defaultValue) { return getConfig(configSig).getShort(key, defaultValue); } static public List<Object> getList(String configSig, String key) { return getConfig(configSig).getList(key); } static public List<Object> getList(String configSig, String key, List<Object> defaultValue) { return getConfig(configSig).getList(key, defaultValue); } static public byte getByte(String configSig, String key) { return getConfig(configSig).getByte(key); } static public byte getByte(String configSig, String key, byte defaultValue) { return getConfig(configSig).getByte(key, defaultValue); } static public String[] getStringArray(String configSig, String key) { return getConfig(configSig).getStringArray(key); } }
properties test file
rabbitmq.propertiesand configure it as follows:
#rpc 模式rmq rpc.rabbit.host=l-opsdev3.ops.bj0.jd.com rpc.rabbit.port=5672 rpc.rabbit.username=jd_vrmphoto rpc.rabbit.password=jd_vrmphoto rpc.rabbit.vhost=jd/vrmphoto rpc.rabbit.queue=rpc_queue rpc.rabbit.exchange=photoworker rpc.rabbit.key=photoworker.rpc
##1.1.4.4. Test
PropertiesConfigUtil config=new PropertiesConfigUtil(); String username = config.getString("rabbitmq", "rpc.rabbit.username"); System.out.println(username);
Output result:
jd_vrmphoto
ok,
Done.1.1.4.5. Notes
1. The encoding is best
UTF-8unified. ReloadingStrategy strategy selection. You can look at the specific implementation classes and usage scenarios. I generally use the FileChangedReloadingStrategy class.
The above is the content of the java operation properties configuration file. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

RSS documents are a simple subscription mechanism to publish content updates through XML files. 1. The RSS document structure consists of and elements and contains multiple elements. 2. Use RSS readers to subscribe to the channel and extract information by parsing XML. 3. Advanced usage includes filtering and sorting using the feedparser library. 4. Common errors include XML parsing and encoding issues. XML format and encoding need to be verified during debugging. 5. Performance optimization suggestions include cache RSS documents and asynchronous parsing.

RSS and XML are still important in the modern web. 1.RSS is used to publish and distribute content, and users can subscribe and get updates through the RSS reader. 2. XML is a markup language and supports data storage and exchange, and RSS files are based on XML.

RSS enables multimedia content embedding, conditional subscription, and performance and security optimization. 1) Embed multimedia content such as audio and video through tags. 2) Use XML namespace to implement conditional subscriptions, allowing subscribers to filter content based on specific conditions. 3) Optimize the performance and security of RSSFeed through CDATA section and XMLSchema to ensure stability and compliance with standards.

RSS is an XML-based format used to publish frequently updated data. As a web developer, understanding RSS can improve content aggregation and automation update capabilities. By learning RSS structure, parsing and generation methods, you will be able to handle RSSfeeds confidently and optimize your web development skills.

RSS chose XML instead of JSON because: 1) XML's structure and verification capabilities are better than JSON, which is suitable for the needs of RSS complex data structures; 2) XML was supported extensively at that time; 3) Early versions of RSS were based on XML and have become a standard.

RSS is an XML-based format used to subscribe and read frequently updated content. Its working principle includes two parts: generation and consumption, and using an RSS reader can efficiently obtain information.

The core structure of RSS documents includes XML tags and attributes. The specific parsing and generation steps are as follows: 1. Read XML files, process and tags. 2. Extract,,, etc. tag information. 3. Handle custom tags and attributes to ensure version compatibility. 4. Use cache and asynchronous processing to optimize performance to ensure code readability.

The main differences between JSON, XML and RSS are structure and uses: 1. JSON is suitable for simple data exchange, with a simple structure and easy to parse; 2. XML is suitable for complex data structures, with a rigorous structure but complex parsing; 3. RSS is based on XML and is used for content release, standardized but limited use.


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version
God-level code editing software (SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
