Java中的配置文件名稱一般都以“.properties”和“.xml”進行結尾,這些配置文件的結構都和Java的HashMap結構是一樣的,其作用是通過修改配置文件來實現(xiàn)代碼中的參數(shù)的更改,從而實現(xiàn)靈活變更參數(shù)。
成都創(chuàng)新互聯(lián)公司于2013年成立,是專業(yè)互聯(lián)網技術服務公司,擁有項目成都網站設計、網站建設網站策劃,項目實施與項目整合能力。我們以讓每一個夢想脫穎而出為使命,1280元崇州做網站,已為上家服務,為崇州各地企業(yè)和個人服務,聯(lián)系電話:18980820575
properties使用
driver=com.MySQL.jdbc.Driver jdbcUrl=jdbc:mysql://localhost:3306/user user=root password=123456
/** * 讀取config.properties文件中的內容,放到Properties類中 * @param filePath 文件路徑 * @param key 配置文件中的key * @return 返回key對應的value */ public static String readConfigFiles(String filePath,String key) { Properties prop = new Properties(); try{ InputStream inputStream = new FileInputStream(filePath); prop.load(inputStream); inputStream.close(); return prop.getProperty(key); }catch (Exception e) { e.printStackTrace(); System.out.println("未找到相關配置文件"); return null; } }
xml使用
cxx1 Bob1 stars1 85 cxx2 Bob2 stars2 85 cxx3 Bob3 stars3 85
package com.cxx.xml; import org.w3c.dom.*; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; /** * @Author: cxx * Dom操作xml * @Date: 2018/5/29 20:19 */ public class DomDemo { //用Element方式 public static void element(NodeList list){ for (int i = 0; i以上就是Java 中什么是配置文件的詳細內容,更多請關注創(chuàng)新互聯(lián)其它相關文章!
文章題目:java配置文件是什么
標題路徑:http://weahome.cn/article/psoejj.html