java 读取json文件并写入Excel

依赖于lombok、easyExcel

java 复制代码
import com.alibaba.excel.EasyExcel;
import com.alibaba.excel.annotation.ExcelProperty;
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import lombok.Builder;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.Setter;

import java.io.*;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;

/**
 * @author hsj
 * @description:
 * @date 2024-8-28 17:54
 */
public class ReadJsonFile {
	public static void main(String[] args) throws Exception {
		File file = new File("I:\\BladeX-Boot\\src\\test\\java\\org\\springblade\\税220304.json");
		FileReader fileReader = new FileReader(file);
		Reader reader = new InputStreamReader(new FileInputStream(file), "Utf-8");
		int ch = 0;
		StringBuffer sb = new StringBuffer();
		while ((ch = reader.read()) != -1) {
			sb.append((char) ch);
		}
		fileReader.close();
		reader.close();
		String jsonStr = sb.toString();

		JSONArray ja = JSON.parseArray(jsonStr);
		List<F> list = new ArrayList<F>();
		for (Object o : ja) {
			JSONObject jb = (JSONObject) o;
			F f = F.builder()
				.name(String.format("*%s*%s", jb.getString("spfwjc"), jb.getString("xmmc")))
				.id(jb.getString("sphfwssflhbbm"))
				.model(jb.getString("ggxh"))
				.unit(jb.getString("dw"))
				.num(jb.getString("spsl"))
				.price(jb.getBigDecimal("hsdj"))
				.total(jb.getBigDecimal("hsje"))
				.tax0(jb.getBigDecimal("slv"))
				.tax1(jb.getBigDecimal("se"))
				.build();
			list.add(f);
		}

		EasyExcel.write("I:\\BladeX-Boot\\src\\test\\java\\org\\springblade\\税220304.xlsx", F.class).sheet("税220304").doWrite(list);
	}
}

@Getter
@Setter
@EqualsAndHashCode
@Builder
class F {
	@ExcelProperty("项目名称")
	private String name;
	@ExcelProperty("ID")
	private String id;
	@ExcelProperty("规格型号")
	private String model;
	@ExcelProperty("单位")
	private String unit;
	@ExcelProperty("数量")
	private String num;
	@ExcelProperty("单价含税")
	private BigDecimal price;
	@ExcelProperty("金额含税")
	private BigDecimal total;
	@ExcelProperty("税率")
	private BigDecimal tax0;
	@ExcelProperty("税额")
	private BigDecimal tax1;
}
相关推荐
阿伟*rui4 分钟前
配置管理,雪崩问题分析,sentinel的使用
java·spring boot·sentinel
待磨的钝刨4 分钟前
【格式化查看JSON文件】coco的json文件内容都在一行如何按照json格式查看
开发语言·javascript·json
XiaoLeisj2 小时前
【JavaEE初阶 — 多线程】单例模式 & 指令重排序问题
java·开发语言·java-ee
paopaokaka_luck2 小时前
【360】基于springboot的志愿服务管理系统
java·spring boot·后端·spring·毕业设计
dayouziei2 小时前
java的类加载机制的学习
java·学习
Yaml44 小时前
Spring Boot 与 Vue 共筑二手书籍交易卓越平台
java·spring boot·后端·mysql·spring·vue·二手书籍
小小小妮子~4 小时前
Spring Boot详解:从入门到精通
java·spring boot·后端
hong1616884 小时前
Spring Boot中实现多数据源连接和切换的方案
java·spring boot·后端
aloha_7895 小时前
从零记录搭建一个干净的mybatis环境
java·笔记·spring·spring cloud·maven·mybatis·springboot
记录成长java5 小时前
ServletContext,Cookie,HttpSession的使用
java·开发语言·servlet