微前端架构如何改变企业的开发模式与效率提升
522
2022-11-27
csv解析框架Windmill的一个demo
csv文件内容如下,第一行是文件头
解析代码如下:
package com.xxx;import lombok.Data;import org.apache.commons.lang3.builder.ToStringBuilder;@Datapublic class CodecRegistries { private String index; private String name; /** * WAVE form Registration Number */ private Integer hex; /*** * Codec ID in the IANA Namespace */ private String mimeType; /*** * WAVE form wFormatTag ID */ private String wFormatTag; /*** * WAVEFORMAT Use */ private String use; /*** * WAVEFORMAT Name */ private String formatName; /*** * WAVEFORMAT Description */ private String descr; /*** * Additional Information */ private String additional; /*** * */ private String contact; @Override public String toString() { return new ToStringBuilder(this) .append("index", index) .append("name", name) .append("hex", hex) .append("mimeType", mimeType) .append("wFormatTag", wFormatTag) .append("use", use) .append("formatName", formatName) .append("descr", descr) .append("additional", additional) .append("contact", contact) .toString(); }}
static Map
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~