java生成CSV文件
2020-12-13 03:42
标签:读取 Matter color point new 参数 buffer red ack 本文内容使用java实现数据生成CSV文件,有关CSV文件知识请参考:CSV (逗号分隔值文件格式) 生成文件如下图: 打开效果如下: java生成CSV文件 标签:读取 Matter color point new 参数 buffer red ack 原文地址:https://www.cnblogs.com/codecat/p/11083530.html内容简介
实现代码(仅供参考,请根据实现情况来修改)
/**
* 坐标点参数实体类
*/
public class PointsParamDto {
/**
* 坐标id(由1开始,累加1,这样的:1,2,3,4,5...)
*/
private String pointId;
/**
* X 坐标点
*/
private String x;
/**
* X 坐标点
*/
private String y;
public PointsParamDto(){}
public PointsParamDto(String pointId,String x,String y){
this.pointId = pointId;
this.x = x;
this.y = y;
}
public String getPointId() {
return pointId;
}
public void setPointId(String pointId) {
this.pointId = pointId;
}
public String getX() {
return x;
}
public void setX(String x) {
this.x = x;
}
public String getY() {
return y;
}
public void setY(String y) {
this.y = y;
}
public String toRow(){
return String.format("%s,%s,%s",this.pointId,this.x,this.y);
}
}
/**
* 生成csv文件
* @param pointsList
* @return
*/
private void PointsToCsvFile(List
调用
List
结果