Spring Boot读取和写入json文件

标签: Springboot 分类: Java 创建时间:2019-04-22 02:40:52 更新时间:2024-11-12 12:53:37

1.静态文件存在于文件系统中(有具体的路径)

SpringBoot的配置文件一般写在application.yml中,如何自定义将一些额外的属性用json存储起来,以方便读取和修改呢?主要使用两个类库,Fastjson和Common-io。

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
 //读取配置文件
public void readConfigFile(){
try{
File file=new File(configfile);
String content= FileUtils.readFileToString(file,"UTF-8");
JSONObject jsonObject=JSONObject.parseObject(content);
this.config=jsonObject;
}catch (IOException e){
logger.error("ConfigFile.readConfigFile",e);
}
}
//重新写入配置文件
private boolean writeConfigFile(){
try {
if(config!=null){
String json=JSONObject.toJSONString(config);
File file=new File(configfile);
FileUtils.writeStringToFile(file,json,"UTF-8",false);
return true;
}
}catch (IOException e){
logger.error("ConfigFile.wirteConfigFile",e);
}
return false;
}

另一种方法:
使用Runable接口,其实和上面的都是差不多的。

2.资源目录下的静态文件(存放于资源resources目录下)

如果静态文件存在于resources目录下,可以通过ClassPathResource加载相应目录下的文件并读取其中的内容。

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
package com.proheng.gis.ApiUtils;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.core.io.ClassPathResource;
import org.springframework.core.io.Resource;

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class ApiUtils {
private static final Logger loger= LoggerFactory.getLogger(ApiUtils.class);
//读取文件内容
public static String readFile(String fileName){
StringBuilder stringBuilder=new StringBuilder();
try {
Resource resource = new ClassPathResource(fileName);
BufferedReader br = new BufferedReader(new InputStreamReader(resource.getInputStream()));
String temp = null;
while ((temp = br.readLine()) != null) {
stringBuilder.append(temp);
}
}catch (Exception e){
loger.error("ApiUtils.readFile",e);
return "";
}
return stringBuilder.toString();
}
}

注意事项
使用ClassPathResource进行resource文件读取,在开发的时候没有问题,但是打包部署到服务器上之后,就会出现问题了。

1
cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/cloud/dev/PhEMSJava/PHEMSsimulation.jar!/BOOT-INF/classes!/inp/pipeline.inp
1
2
3
// 读取文件
ClassPathResource classPathResource = new ClassPathResource(inpFilePath+"pipeline.inp");
File inpFile=classPathResource.getFile();

【解决方法】
将文件读取方式,改为流读取方式

1
2
3
4
// 读取文件
ClassPathResource classPathResource = new ClassPathResource(inpFilePath+"pipeline.inp");
inpStream=classPathResource.getInputStream();

参考文章:
1.SpringBoot打包后无法读取到resource下的资源文件
2.Spring boot 打包jar后无法读取resource下的配置文件 通过文件流的读取方式,代码中将*.conf文件拷贝至jar外的临时文件夹下,然后再读取临时文件夹下的*.conf文件。
3.问题解决:cannot be resolved to absolute file path because it does not reside in the file system: jar 1.使用resource.getInputStream()读取文件内容。2.缓存到临时文件,使用临时文件路径进行读取。
4.SpringBoot项目jar启动异常:java.io.FileNotFoundException: file:/xxx/xxx.jar!/BOOT-INF/classes!/xxx.yml
小额赞助
本人提供免费与付费咨询服务,感谢您的支持!赞助请发邮件通知,方便公布您的善意!
**光 3.01 元
Sun 3.00 元
bibichuan 3.00 元
微信公众号
广告位
诚心邀请广大金主爸爸洽谈合作
每日一省
isNaN 和 Number.isNaN 函数的区别?

1.函数 isNaN 接收参数后,会尝试将这个参数转换为数值,任何不能被转换为数值的的值都会返回 true,因此非数字值传入也会返回 true ,会影响 NaN 的判断。

2.函数 Number.isNaN 会首先判断传入参数是否为数字,如果是数字再继续判断是否为 NaN ,不会进行数据类型的转换,这种方法对于 NaN 的判断更为准确。

每日二省
为什么0.1+0.2 ! == 0.3,如何让其相等?

一个直接的解决方法就是设置一个误差范围,通常称为“机器精度”。对JavaScript来说,这个值通常为2-52,在ES6中,提供了Number.EPSILON属性,而它的值就是2-52,只要判断0.1+0.2-0.3是否小于Number.EPSILON,如果小于,就可以判断为0.1+0.2 ===0.3。

每日三省
== 操作符的强制类型转换规则?

1.首先会判断两者类型是否**相同,**相同的话就比较两者的大小。

2.类型不相同的话,就会进行类型转换。

3.会先判断是否在对比 null 和 undefined,是的话就会返回 true。

4.判断两者类型是否为 string 和 number,是的话就会将字符串转换为 number。

5.判断其中一方是否为 boolean,是的话就会把 boolean 转为 number 再进行判断。

6.判断其中一方是否为 object 且另一方为 string、number 或者 symbol,是的话就会把 object 转为原始类型再进行判断。

每日英语
Happiness is time precipitation, smile is the lonely sad.
幸福是年华的沉淀,微笑是寂寞的悲伤。