Java研学-配置文件

一 配置文件

1 作用–解决硬编码的问题

  在实际开发中,有时将变量的值直接定义在.java源文件中;如果维护人员想要修改数据,无法完成(因为没有修改权限),这种操作称之为硬编码

2 执行原理:

  将经常需要改变的数据定义在指定类型的文件中,通过java代码对指定的类型的文件进行操作

  核心技术:IO流 – 输入字节流 – InputStream对象

3 分类

  ① .properties : 文件类型:对应ava中定义好Properties类,他是一个集合类;是Map集合的一个具体实现类;以K-V键值对形式存储,呈现一一对应的映射关系;其中KEY和VALUE只支持String类型

  ② .xml:文件类型;可扩展标记(标签)语言;以标签的形式进行存储;与HTML一样

二 .properties文件

1 编写指定的.properties文件 – 首先在项目下创建一个resource文件夹(固定名称,与src同级)

2 将该文件夹通过Mark Directory as中的Resources Root设置为资源文件夹

在这里插入图片描述

3 于该文件夹中创建.properties文件(文件需符合小驼峰命名法,且文件后缀也要写)

在这里插入图片描述

4 获取配置文件中的数据

配置文件

# 只支持String类型,故不需定义数据类型,"",注意不要多出空格
water=water
fire=fire

Test类

//方式1:将配置文件加载到InputStream对象中,需写绝对路径
public class Test {public static void main(String[] args) {InputStream is=null;try {is=new FileInputStream("D:\\Java\\workspace\\untitled1\\resource\\play.properties");// 定义properties集合Properties p=new Properties();// 通过集合对象的方法,将流中的数据加载到集合中p.load(is);// public String getProperty(String key)  通过key获取value// public Object get(String key)    通过key获取valueSystem.err.println(p.getProperty("water"));System.err.println(p.getProperty("fire"));} catch (FileNotFoundException e) {e.printStackTrace();} catch (IOException e) {e.printStackTrace();}}
}// 方式2:通过类加载器  ClassLoader对象(JVM提供)
public class Test {public static void main(String[] args) {// 反射机制 ClassLoader cl=类名.class.getClassLoader();// 通过当前执行线程对象获取 ClassLoader cl=Thread.currentThread().getContextClassLoader();ClassLoader cl=Test.class.getClassLoader();// 通过类加载器对象调用方法,将指定的配置文件加载到InputStream对象中InputStream is=cl.getResourceAsStream("play.properties");// 定义集合Properties p=new Properties();try {p.load(is);System.out.println(p.getProperty("water"));System.out.println(p.getProperty("fire"));} catch (IOException e) {e.printStackTrace();} finally {if(is!=null){try {is.close();} catch (IOException e) {e.printStackTrace();}}}}
}

三 .xml文件应用

1 概述:可扩展标记(标签)语言;由W3C组织编写,定义定规范;支持自定义标签(支持中文标签),创建方式与.properties相同(后缀改为.xml)

2 格式:

<标签名></标签名> – 没有特殊要求都是双标签

<标签名/> – 单标签,当且仅当标签之间没有编写文本内容,可以使用单标签

<?xml version="1.0" encoding="UTF-8"?>
<!--xml文件第一行是文档说明 version是xml的版本号 encoding是xml的字符编码集-->
<!--一个xml只有一个根标签:体现该xml的作用,可通过tab快捷键生成标签-->
<Water><!--区分大小写,类似Java的类--><water><name>大黄</name><kg>24</kg></water><water><name>大白</name><kg>30</kg></water>
</Water>

3 DOM方式–解析标签类型文件(.xml文件或.html文件)

  概述:Document Object Model文档对象模型,将指定的配置文件(Document)通过对象(Object)的方式,按照指定规则(Model)进行操作
  它将整个页面抽象为一棵树(读取XML或HTML文档,将其转换为一个DOM树,解析DOM树,将其转换为一个内存中的树形结构),开发者可以通过操作树上的节点来改变页面的内容、结构和样式,并将修改后的DOM树重新渲染到页面上。DOM树的根节点是document对象,它代表整个文档。每个节点都有自己的属性和方法,可以通过这些属性和方法来操作节点。

  主要操作标签与文本内容,前提是操作语言必须支持面向对象编程方式,文件必须是标记(标签)类型的文件(主干-根标签,枝干-子标签,叶子-标签中的文本内容)

// 通过DOM对指定的xml文件进行crud操作// 获取并打印二号小动物的名字
public class DemoTest {@Testpublic void getName() throws Exception {// 获取配置文件对象// 获取文件构建工厂对象DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();// 根据工厂对象获取文件构建对象DocumentBuilder db=dbf.newDocumentBuilder();// 根据文件构建对象获取文件对象Document doc=db.parse("resource/play.xml");// 根据文件对象获取根标签Element root=doc.getDocumentElement();// 通过根标签获取指定位置上的元素  Node 父节点 Element 子元素NodeList animals=root.getElementsByTagName("animal");// 自0计算Element a2= (Element) animals.item(1);// 根据指定学生标签获取指定的name标签Element name= (Element) a2.getElementsByTagName("name").item(0);// 根据name标签获取文本内容System.err.println("name="+name.getTextContent());}
}// 增加一个小动物
public class DemoTest {@Testpublic void addAnimal() throws Exception {// 获取文件对象DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();DocumentBuilder db=dbf.newDocumentBuilder();Document doc=db.parse("resource/play.xml");// 通过文档对象创建Animal对应的标签Element animal=doc.createElement("animal");Element name=doc.createElement("name");Element kg=doc.createElement("kg");// 给标签设置对应的文本内容name.setTextContent("小花");kg.setTextContent("11");// 将子标签name,kg追加到animal的尾部animal.appendChild(name);animal.appendChild(kg);// 通过文档对象获取根标签并将animal标签追加到根标签尾部Element animals=doc.getDocumentElement();animals.appendChild(animal);// 此时后端操作完成,需通过回写刷新xml// 获取回写工厂对象TransformerFactory tff=TransformerFactory.newInstance();// 通过工厂对象获取回写对象Transformer tf=tff.newTransformer();// 通过回写对象调用Document对象中的内容完成回写xml// Source xmlSource 后端操作 Result outputTarget 写入xml中tf.transform(new DOMSource(doc),new StreamResult(new File("resource/play.xml")));System.out.println("OK");}
}// 修改2号小动物的体重
public class DemoTest {@Testpublic void replaceKg() throws Exception {// 获取文件对象DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();DocumentBuilder db=dbf.newDocumentBuilder();Document doc=db.parse("resource/play.xml");// 根标签Element animals=doc.getDocumentElement();// 通过根标签获取所有动物子标签查询指定动物Element a2= (Element) animals.getElementsByTagName("animal").item(1);// animal标签中的kg标签只有一个故item为0Element kg= (Element) a2.getElementsByTagName("kg").item(0);kg.setTextContent("20");// 获取回写对象TransformerFactory tff=TransformerFactory.newInstance();Transformer tf=tff.newTransformer();tf.transform(new DOMSource(doc),new StreamResult(new File("resource/play.xml")));System.out.println("OK");}
}// 删除2号小动物
public class DemoTest {@Testpublic void removeAnimal() throws Exception {// 获取文件对象DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();DocumentBuilder db=dbf.newDocumentBuilder();Document doc=db.parse("resource/play.xml");// 根标签Element animals=doc.getDocumentElement();// 获取子标签Element a2= (Element) animals.getElementsByTagName("animal").item(1);// 根标签调用方法删除子标签 父一级删除子一级animals.removeChild(a2);// 获取回写对象TransformerFactory tff=TransformerFactory.newInstance();Transformer tf=tff.newTransformer();tf.transform(new DOMSource(doc),new StreamResult(new File("resource/play.xml")));System.out.println("OK");}
}

4 xml中约束

约束:规范指定编程语言或文件的编写格式

xml约束:由w3c组织规定,规定xml语言格式

xml约束分类 – 一般是下载网络上编写好的约束文件①.dtd ②.schema

四 封装工具类

1 作用

  重复操作(获取文档对象+回写文件)会导致配置文件加载次数过多,此时需要通过 jar包(需要大量API)或者工具类 (针对某个操作)简化代码

2 工具类定义

① 将指定配置文件加载定义到static代码块中(只加载一次,优先加载)

② 提供获取文档对象的方法和回写xml文档的方法

封装工具类

① 编写.properties文件,配置指定的xml文件的路径

# xml的路径     xmlPath.properties
path=resource/play.xml

② 编写工具类

public abstract class DOMUtils {private static String path;private static Document doc;  //导入w3c包的doc// 指定配置文件只需优先加载一次static{ClassLoader cl=DOMUtils.class.getClassLoader();InputStream is=cl.getResourceAsStream("xmlPath.properties");Properties p=new Properties();try {p.load(is);path=p.getProperty("path");} catch (IOException e) {e.printStackTrace();} finally {if(is!=null){try {is.close();} catch (IOException e) {e.printStackTrace();}}}}// 根据路径获取xml对应的Document对象public static Document getDoc() throws Exception{DocumentBuilderFactory dbf=DocumentBuilderFactory.newInstance();DocumentBuilder db=dbf.newDocumentBuilder();doc=db.parse(new File(path));return doc;}// 回写xml方法public static void writeForXml() throws Exception{TransformerFactory tff=TransformerFactory.newInstance();Transformer tf=tff.newTransformer();tf.transform(new DOMSource(doc),new StreamResult(new File(path)));}
}

② 测试

public class DemoTest {@Testpublic void playUtils() throws Exception {// 获取文档对象Document doc= DOMUtils.getDoc();// 通过文档对象创建子标签Element animal=doc.createElement("animal");Element name=doc.createElement("name");Element kg=doc.createElement("kg");// 为子标签设置内容name.setTextContent("煤球");kg.setTextContent("16");// 子标签追加animal.appendChild(name);animal.appendChild(kg);// 跟标签追加Element animals=doc.getDocumentElement();animals.appendChild(animal);// 回写xmlDOMUtils.writeForXml();System.out.println("OK");}
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/191056.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

鸿蒙学习之TypeScript 语法理解笔记

1、变量及数据类型 // string&#xff1a;字符串&#xff0c;单引号或双引号 let msg : string hello wprld console.log(msg:msg)// number&#xff1a;数值、整数、浮点let num :number 21console.log(num:num)//boolean&#xff1a;布尔let finished: boolean truecons…

读书笔记:《Effective Modern C++(C++14)》

Effective Modern C&#xff08;C14&#xff09; GitHub - CnTransGroup/EffectiveModernCppChinese: 《Effective Modern C》- 完成翻译 Deducing Types 模版类型推导&#xff1a; 引用&#xff0c;const&#xff0c;volatile被忽略数组名和函数名退化为指针通用引用&#…

java学习part30callabel和线程池方式

140-多线程-线程的创建方式3、4&#xff1a;实现Callable与线程池_哔哩哔哩_bilibili 1.Callable 实现类 使用方式 返回值 2.线程池

检测判断IP合法性API接口

检测判断IP合法性API接口 一、检测判断IP合法性API接口二、使用步骤1、接口2、请求参数3、请求参数示例4、接口 返回示例 三、 如何获取appKey和uid1、申请appKey:2、获取appKey和uid 四、重要说明 一、检测判断IP合法性API接口 一款免费的帮助你检测判断IP合法性API接口 二、…

“于阗佛国、美食和田”——“万人游新疆”推广活动走进企业

11月23日&#xff0c;在安徽省文旅厅、安徽省援疆指挥部、和田地区文旅局的指导和支持下&#xff0c;由安徽环球文旅集团组织的“于阗佛国、美食和田”——“万人游新疆”分享会在安徽合肥市财富广场瑞众保险&#xff08;原华夏保险&#xff09;3楼黄山厅会议室举行&#xff0c…

【06】ES6:数组的扩展

一、扩展运算符 扩展运算符&#xff08;spread&#xff09;是三个点&#xff08;…&#xff09;。它是 rest 参数的逆运算&#xff0c;将一个数组转为用逗号分隔的参数序列。 1、基本语法 [...array] // array表示要转换的数组console.log(...[1, 2, 3]) // 1 2 3 console.l…

Python操作合并单元格

如何使用python操作Excel实现对合并单元格的一系列操作 01、准备工作&#xff08;使用镜像下载&#xff09; pip install openpyx -i https://pypi.tuna.tsinghua.edu.cn/simple 02、简单示例 简单创建一个工作簿进行示范&#xff1a; from openpyxl import Workbook from o…

波奇学C++:智能指针(二):auto_ptr, unique_ptr, shared_ptr,weak_ptr

C98到C11&#xff1a;智能指针分为auto_ptr, unique_ptr, shared_ptr&#xff0c;weak_ptr,这几种智能都是为了解决指针拷贝构造和赋值的问题 auto_ptr&#xff1a;允许拷贝&#xff0c;但只保留一个指向空间的指针。 管理权转移&#xff0c;把拷贝对象的资源管理权转移给拷贝…

vue中实现纯数字键盘

一、完整 代码展示 <template><div class"login"><div class"login-content"><img class"img" src"../../assets/image/loginPhone.png" /><el-card class"box-card"><div slot"hea…

阵列信号处理---频率-波数响应和波束方向图

波束延迟求和器 阵列是由一组全向阵元组成&#xff0c;阵元的位置为 p n p_n pn​&#xff0c;如下图所示&#xff1a; 阵元分别在对应的位置对信号进行空域采样&#xff0c;这样就产生了一组信号信号为 f ( t , p ) f(t,p) f(t,p),具体表示如下&#xff1a; f ( t , p ) [ f…

C++入门篇(零) C++入门篇概述

目录 一、C概述 1. 什么是C 2. C的发展史 3. C的工作领域 4. C关键字(C98) 二、C入门篇导论 一、C概述 1. 什么是C C是基于C语言而产生的计算机程序设计语言&#xff0c;支持多重编程模式&#xff0c;包括过程化程序设计、数据抽象、面向对象程序设计、泛型程序设计和设计模式…

SQL Server 2016(创建数据库)

1、实验环境。 某公司有一台已经安装了SQL Server 2016的服务器&#xff0c;现在需要新建数据库。 2、需求描述。 创建一个名为"db_class"的数据库&#xff0c;数据文件和日志文件初始大小设置为10MB&#xff0c;启用自动增长&#xff0c;数据库文件存放路径为C:\db…

Ubuntu系统CLion安装与Ubuntu下菜单启动图标设置

Ubuntu系统CLion安装 pycharm 同理。 参考官网安装过程&#xff1a;官网安装过程 下载linux tar.gz包 # 解压 sudo tar -xzvf CLion-*.tar.gz -C /opt/ sh /opt/clion-*/bin/clion.sh其中第二个命令是启动CLion命令 clion安装完以后&#xff0c;不会在桌面或者菜单栏建立图…

大学里学编程,为什么这么难?

在大学学习计算机专业&#xff0c;为何很多同学觉得编程学得不顺心呢&#xff1f;许多同学会有这种感觉&#xff0c;在上大学里的计算机专业课程时&#xff0c;听得头都大了&#xff0c;但是真正要写代码&#xff0c;却不知道从哪里开始&#xff0c;或是觉得&#xff0c;大学里…

05:2440----代码重定义

目录 一&#xff1a;引入 1&#xff1a;基本概念 2&#xff1a;NAND启动 3&#xff1a;NOR启动 4:变量 5&#xff1a;实验证明 A:代码makefile B:NOR启动 C:NAND启动 D:内存空间 二&#xff1a;链接脚本 1:NOR 2:NAND 3:解决方法 A:尝试解决 B:方法一解决 A:简…

【SparkSQL】SparkSQL的运行流程 Spark On Hive 分布式SQL执行引擎

【大家好&#xff0c;我是爱干饭的猿&#xff0c;本文重点介绍、SparkSQL的运行流程、 SparkSQL的自动优化、Catalyst优化器、SparkSQL的执行流程、Spark On Hive原理配置、分布式SQL执行引擎概念、代码JDBC连接。 后续会继续分享其他重要知识点总结&#xff0c;如果喜欢这篇文…

Echarts大屏可视化_05 折线图的定制开发

继续跟着pink老师学习Echarts相关内容&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01;&#xff01; 折线图1 1.引入 折线图选取示例地址 标题没有用到就给他删了 直接引入 注意这里是line下面的chart 获取dom元素一定不…

吉他初学者学习网站搭建系列(4)——如何查询和弦图

文章目录 背景实现ChordDbvexchords 背景 作为吉他初学者&#xff0c;如何根据和弦名快速查到和弦图是一个必不可少的功能。以往也许你会去翻和弦的书籍查询&#xff0c;像查新华字典那样&#xff0c;但是有了互联网后我们不必那样&#xff0c;只需要在网页上输入和弦名&#…

POSTGRESQL中如何利用SQL语句快速的进行同环比?

1. 引言 在数据驱动的时代&#xff0c;了解销售、收入或任何业务指标的同比和环比情况对企业决策至关重要。本文将深入介绍如何利用 PostgreSQL 和 SQL 语句快速、准确地进行这两种重要分析。 2. 数据准备 为了演示&#xff0c;假设我们有一张 sales 表&#xff0c;存储了销…

【PyTorch】线性回归

文章目录 1. 代码实现1.1 一元线性回归模型的训练 2. 代码解读2.1. tensorboardX2.1.1. tensorboardX的安装2.1.2. tensorboardX的使用 1. 代码实现 波士顿房价数据集下载 1.1 一元线性回归模型的训练 import numpy as np import torch import torch.nn as nn from torch.ut…