根据json字符串生成Json文件
实现步骤
1.创建json文件
1.1获取当前节点的根路径
String filePath = ResourceUtils.getURL("classpath:").getPath();
1.2 拼接文件名和后缀 得到文件完整路径
String fullPath = filePath + File.separator + fileName + ".json";
1.3 创建json文件
File file = new File(fullPath);
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
if (file.exists()) { // 如果已存在,删除旧文件
file.delete();
}
file.createNewFile();//创建新文件
//将单引号转义一下,因为JSON串中的字符串类型可以单引号引起来的
if(jsonString.indexOf("'")!=-1){
jsonString = jsonString.replaceAll("'", "\\'");
}
//将双引号转义一下,因为JSON串中的字符串类型可以单引号引起来的
if(jsonString.indexOf("\"")!=-1){
jsonString = jsonString.replaceAll("\"", "\\\"");
}
//将回车换行转换一下,因为JSON串中字符串不能出现显式的回车换行
if(jsonString.indexOf(&#