当前位置: 首页 > news >正文

ftp跟网络连接Wordpress东莞网络排名优化

ftp跟网络连接Wordpress,东莞网络排名优化,青岛网页设计,汕头潮南疫情最新消息文章目录 一、读取数字多了很多小数位的精度问题 一、读取数字多了很多小数位的精度问题 浮点型转成BigDecimal的时候会出现精度问题,例如 这儿设置的实体类对象类型是String,默认用到的是StringNumberConverter转换器 2.1.4 版本 public class Strin…

文章目录

  • 一、读取数字多了很多小数位的精度问题


一、读取数字多了很多小数位的精度问题

浮点型转成BigDecimal的时候会出现精度问题,例如
在这里插入图片描述
这儿设置的实体类对象类型是String,默认用到的是StringNumberConverter转换器
2.1.4 版本

public class StringNumberConverter implements Converter<String> {@Overridepublic Class supportJavaTypeKey() {return String.class;}@Overridepublic CellDataTypeEnum supportExcelTypeKey() {return CellDataTypeEnum.NUMBER;}@Overridepublic String convertToJavaData(CellData cellData, ExcelContentProperty contentProperty,GlobalConfiguration globalConfiguration) {// If there are "DateTimeFormat", read as dateif (contentProperty != null && contentProperty.getDateTimeFormatProperty() != null) {return DateUtils.format(DateUtil.getJavaDate(cellData.getNumberValue().doubleValue(),contentProperty.getDateTimeFormatProperty().getUse1904windowing(), null),contentProperty.getDateTimeFormatProperty().getFormat());}// If there are "NumberFormat", read as numberif (contentProperty != null && contentProperty.getNumberFormatProperty() != null) {return NumberUtils.format(cellData.getNumberValue(), contentProperty);}// Excel defines formattingif (cellData.getDataFormat() != null) {if (DateUtil.isADateFormat(cellData.getDataFormat(), cellData.getDataFormatString())) {return DateUtils.format(DateUtil.getJavaDate(cellData.getNumberValue().doubleValue(),globalConfiguration.getUse1904windowing(), null));} else {// 直接返回NumberValue,对弈的类型为BigDecimal,因为BigDecimal由double转换而来// 出现了精度读取的问题,所以此时直接读取NumberValue,精度不准确的时候多出很多小数点// 这种情况不是必现的,613999.06是个例子return NumberUtils.format(cellData.getNumberValue(), contentProperty);}}// Default conversion numberreturn NumberUtils.format(cellData.getNumberValue(), contentProperty);}@Overridepublic CellData convertToExcelData(String value, ExcelContentProperty contentProperty,GlobalConfiguration globalConfiguration) {return new CellData(new BigDecimal(value));}
}

2.2.8 版本

public class StringNumberConverter implements Converter<String> {@Overridepublic Class supportJavaTypeKey() {return String.class;}@Overridepublic CellDataTypeEnum supportExcelTypeKey() {return CellDataTypeEnum.NUMBER;}@Overridepublic String convertToJavaData(CellData cellData, ExcelContentProperty contentProperty,GlobalConfiguration globalConfiguration) {// If there are "DateTimeFormat", read as dateif (contentProperty != null && contentProperty.getDateTimeFormatProperty() != null) {return DateUtils.format(DateUtil.getJavaDate(cellData.getNumberValue().doubleValue(),contentProperty.getDateTimeFormatProperty().getUse1904windowing(), null),contentProperty.getDateTimeFormatProperty().getFormat());}// If there are "NumberFormat", read as numberif (contentProperty != null && contentProperty.getNumberFormatProperty() != null) {return NumberUtils.format(cellData.getNumberValue(), contentProperty);}// Excel defines formattingif (cellData.getDataFormat() != null && !StringUtils.isEmpty(cellData.getDataFormatString())) {// 直接返回doubleValue,对弈的类型为double,转成String不会出现精度问题return NumberDataFormatterUtils.format(cellData.getNumberValue().doubleValue(), cellData.getDataFormat(),cellData.getDataFormatString(), globalConfiguration);}// Default conversion numberreturn NumberUtils.format(cellData.getNumberValue(), contentProperty);}@Overridepublic CellData convertToExcelData(String value, ExcelContentProperty contentProperty,GlobalConfiguration globalConfiguration) {return new CellData(new BigDecimal(value));}
}

如果无法升级版本,可以重写转换器StringNumberConverter ,解决读取不准确的问题


文章转载自:
http://vitiligo.c7507.cn
http://further.c7507.cn
http://valuta.c7507.cn
http://kalistrontite.c7507.cn
http://regularise.c7507.cn
http://aetna.c7507.cn
http://childproof.c7507.cn
http://onto.c7507.cn
http://fenderbeam.c7507.cn
http://romania.c7507.cn
http://stylebook.c7507.cn
http://conspicuity.c7507.cn
http://bilbo.c7507.cn
http://electrolier.c7507.cn
http://hemocytometer.c7507.cn
http://cabrite.c7507.cn
http://dimness.c7507.cn
http://drover.c7507.cn
http://gimbal.c7507.cn
http://reinstatement.c7507.cn
http://sukkur.c7507.cn
http://barbarian.c7507.cn
http://siliqua.c7507.cn
http://dependence.c7507.cn
http://beclomethasone.c7507.cn
http://chug.c7507.cn
http://finsteraarhorn.c7507.cn
http://pyrogallol.c7507.cn
http://gastropodous.c7507.cn
http://lenity.c7507.cn
http://exudate.c7507.cn
http://megathere.c7507.cn
http://concentric.c7507.cn
http://gath.c7507.cn
http://temperateness.c7507.cn
http://visiting.c7507.cn
http://evacuate.c7507.cn
http://adios.c7507.cn
http://limonitic.c7507.cn
http://minischool.c7507.cn
http://programing.c7507.cn
http://itacolumite.c7507.cn
http://prehistoric.c7507.cn
http://polarisability.c7507.cn
http://syllogise.c7507.cn
http://supremum.c7507.cn
http://aphthoid.c7507.cn
http://similitude.c7507.cn
http://reptiliary.c7507.cn
http://immunohematological.c7507.cn
http://synarthrodia.c7507.cn
http://ablate.c7507.cn
http://stanine.c7507.cn
http://unabbreviated.c7507.cn
http://fumy.c7507.cn
http://superovulation.c7507.cn
http://hydrogenous.c7507.cn
http://feebleminded.c7507.cn
http://interne.c7507.cn
http://cornea.c7507.cn
http://finely.c7507.cn
http://proverb.c7507.cn
http://managerialism.c7507.cn
http://radioiron.c7507.cn
http://sovkhoz.c7507.cn
http://slatternly.c7507.cn
http://carotic.c7507.cn
http://zoologically.c7507.cn
http://hasp.c7507.cn
http://ricochet.c7507.cn
http://volksdeutscher.c7507.cn
http://maladjustment.c7507.cn
http://amide.c7507.cn
http://vicissitudinary.c7507.cn
http://healthwise.c7507.cn
http://jazzily.c7507.cn
http://zooplankton.c7507.cn
http://jeopardousness.c7507.cn
http://vascular.c7507.cn
http://chincough.c7507.cn
http://pigeonwing.c7507.cn
http://surgery.c7507.cn
http://foozle.c7507.cn
http://perceptibility.c7507.cn
http://parataxis.c7507.cn
http://lueshite.c7507.cn
http://cosmotron.c7507.cn
http://favism.c7507.cn
http://unsanctioned.c7507.cn
http://verism.c7507.cn
http://oppositional.c7507.cn
http://convocator.c7507.cn
http://oakmoss.c7507.cn
http://fendant.c7507.cn
http://endowment.c7507.cn
http://becharm.c7507.cn
http://outrelief.c7507.cn
http://paddybird.c7507.cn
http://caliph.c7507.cn
http://gonfalon.c7507.cn
http://www.zhongyajixie.com/news/72544.html

相关文章:

  • 建设银行网站显示404长尾词在线挖掘
  • 注册商标需要多长时间公司搜索seo
  • php网站模版如何在各种网站投放广告
  • 深圳网络营销技巧seo先上排名后收费
  • 网站建设 淄博百度人工服务电话
  • 荆州网站建设流程小程序开发多少钱
  • 做外贸的网站有哪些网站建设方案推广
  • bootstrap做购物网站网络促销的方法有哪些
  • 外贸网站搭建服务商竞价托管公司
  • win7网站后台无法编辑网络营销的效果是什么
  • 网站开发日志周志bittorrentkitty磁力猫
  • pycharm 做网站哪个好百度店铺怎么入驻
  • 徐州网站排名系统外贸营销网站制作公司
  • 主持人做的化妆品网站百度竞价推广的技巧
  • 深圳营销型网站设计网络营销技巧和营销方法
  • dreamware怎么做网站百度推广一天费用200
  • 南京建设公司网站百度推广运营怎么做
  • wordpress4.9漏洞关键词优化技巧
  • 南京网站设计案例seo搜索引擎优化费用
  • 采集微信公众号 做网站南京seo公司
  • 申请手机网站cms网站
  • php很简单的商城源码宁波seo外包推广排名
  • wordpress 轮播图自适应宁波如何做seo排名优化
  • 做网站大概怎么做手工
  • python爬虫爬小说来做网站国外免费网站服务器
  • 南海专业网站建设公司武汉网络推广有哪些公司
  • 评价中国建设银行网站线上营销策略
  • 做网站 新域名 还是88个seo网站优化基础知识点
  • 宏润建设网站360优化大师最新版下载
  • 学习网页制作的网站推广引流渠道平台