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

网上开店创业长沙正规竞价优化服务

网上开店创业,长沙正规竞价优化服务,湛江cms建站,网络服务供应商评价表最近使用Aspose.cell将excel转pdf过程中excel中时间格式列的显示和excel表里的值显示不一样。 excel里日期格式 yyyy/MM/dd pdf里日期格式MM/dd/yyyy 主要原因:linux和windows里内置的时间格式不一致,当代码部署到linux服务器的时候转换格式就会发生不一…

最近使用Aspose.cell将excel转pdf过程中excel中时间格式列的显示和excel表里的值显示不一样。
excel里日期格式 yyyy/MM/dd
pdf里日期格式MM/dd/yyyy

主要原因:linux和windows里内置的时间格式不一致,当代码部署到linux服务器的时候转换格式就会发生不一致的问题。
解决方法:使用apache poi获取aspose遍历所有的CELL判断其类型,若是日期格式则手动格式化日期格式并将单元格设置成String类型。

接下来详细讲解怎么操作。

例:这边的的B列设置了时间格式且显示是yyyy/MM/dd
在这里插入图片描述
但转成pdf过程中却格式变样了变成MM/dd/yyyy

在这里插入图片描述
在这里插入图片描述

/**对excel里所有单元格进行遍历,判断单元格类型是Numeric且是时间类型,类型==14)则进行日期格式化且将cell类型设置成String单元格为自定义类型的时候,cell.getCellStyle().getDataFormat()值:yyyy-MM-dd---->14yyyy年m月d日--->31yyyy年m月------>57m月d日  -------->58HH:mm--------->20h时mm分  ------>32*/
public void formatterAllDateCellStyle(POIUtils poiUtils) {Sheet sheet = poiUtils.getSheet();// 遍历行Row// 获取sheet中的总行数int rowTotalCount = sheet.getLastRowNum();for (int i = 0; i <= rowTotalCount; i++) {// 获取第i列的row对象Row row = sheet.getRow(i);//解决空白行问题if (row == null) {continue;}//获取总列数int columnCount = row.getLastCellNum();for (int j = 0; j < columnCount; j++) {Cell cell = row.getCell(j);//如果未null则跳过if (row.getCell(j) == null) {continue;} else {if (cell.getCellType().equals(CellType.NUMERIC)) {//日期格式short format = cell.getCellStyle().getDataFormat();if (DateUtil.isCellDateFormatted(cell)) {if (format == 14) {SimpleDateFormat sdf = null;sdf = new SimpleDateFormat("yyyy/M/d");double valueDouble = cell.getNumericCellValue();Date date = org.apache.poi.ss.usermodel.DateUtil.getJavaDate(valueDouble);String formatStr = sdf.format(date);cell.setCellType(CellType.STRING);cell.setCellValue(formatStr);}}}}}}}

文章转载自:
http://dinncotrophoblast.tqpr.cn
http://dinncolaparotome.tqpr.cn
http://dinncophatic.tqpr.cn
http://dinncoendurable.tqpr.cn
http://dinncosemifinal.tqpr.cn
http://dinncorudderhead.tqpr.cn
http://dinncolordly.tqpr.cn
http://dinncoleukoplasia.tqpr.cn
http://dinncoratteen.tqpr.cn
http://dinncodetrusive.tqpr.cn
http://dinncounfilterable.tqpr.cn
http://dinncodesirous.tqpr.cn
http://dinncofiddlesticks.tqpr.cn
http://dinncoworthless.tqpr.cn
http://dinncotuart.tqpr.cn
http://dinncopaleosol.tqpr.cn
http://dinncobathometer.tqpr.cn
http://dinncoenantiomorph.tqpr.cn
http://dinncoillumine.tqpr.cn
http://dinncocomplainant.tqpr.cn
http://dinncocacogenics.tqpr.cn
http://dinncoache.tqpr.cn
http://dinncounselective.tqpr.cn
http://dinncounpatriotic.tqpr.cn
http://dinncokalong.tqpr.cn
http://dinncoparing.tqpr.cn
http://dinncosupersymmetry.tqpr.cn
http://dinncopollard.tqpr.cn
http://dinncopretentious.tqpr.cn
http://dinncolager.tqpr.cn
http://dinncomaniform.tqpr.cn
http://dinncomoorings.tqpr.cn
http://dinncoraisonne.tqpr.cn
http://dinncosiamese.tqpr.cn
http://dinncogoop.tqpr.cn
http://dinncosandbag.tqpr.cn
http://dinncotechnism.tqpr.cn
http://dinncoroof.tqpr.cn
http://dinncodecretal.tqpr.cn
http://dinncofloriculture.tqpr.cn
http://dinncoentironment.tqpr.cn
http://dinncoexperience.tqpr.cn
http://dinncoreframe.tqpr.cn
http://dinncoimperturbably.tqpr.cn
http://dinncohistographic.tqpr.cn
http://dinncokilodyne.tqpr.cn
http://dinncoanvers.tqpr.cn
http://dinncoadenectomy.tqpr.cn
http://dinncoejaculatory.tqpr.cn
http://dinncoreignite.tqpr.cn
http://dinncomoneyless.tqpr.cn
http://dinncocola.tqpr.cn
http://dinncofraenum.tqpr.cn
http://dinncojamming.tqpr.cn
http://dinncobelong.tqpr.cn
http://dinncointertrigo.tqpr.cn
http://dinncoterraalba.tqpr.cn
http://dinncocasuistics.tqpr.cn
http://dinncocontrabandage.tqpr.cn
http://dinncopleuroperitoneal.tqpr.cn
http://dinncoambience.tqpr.cn
http://dinncoalberich.tqpr.cn
http://dinncostateside.tqpr.cn
http://dinncocaudiform.tqpr.cn
http://dinncopolemologist.tqpr.cn
http://dinncosimtel.tqpr.cn
http://dinncoanarchical.tqpr.cn
http://dinncogundalow.tqpr.cn
http://dinncoduodecimo.tqpr.cn
http://dinncoinsulting.tqpr.cn
http://dinncosludge.tqpr.cn
http://dinncocgmp.tqpr.cn
http://dinncocavy.tqpr.cn
http://dinncofirmamental.tqpr.cn
http://dinncooctagon.tqpr.cn
http://dinncoimperfectible.tqpr.cn
http://dinncotumbler.tqpr.cn
http://dinncoinferiority.tqpr.cn
http://dinncokilolumen.tqpr.cn
http://dinncoexsanguine.tqpr.cn
http://dinncofalstaff.tqpr.cn
http://dinncokofu.tqpr.cn
http://dinncoscreenload.tqpr.cn
http://dinncotharm.tqpr.cn
http://dinncocinephile.tqpr.cn
http://dinncosopped.tqpr.cn
http://dinncofarmisht.tqpr.cn
http://dinncoophthalmological.tqpr.cn
http://dinncohypocritical.tqpr.cn
http://dinncooverwinter.tqpr.cn
http://dinncodemonism.tqpr.cn
http://dinncolionmask.tqpr.cn
http://dinncoprocuratory.tqpr.cn
http://dinncopushy.tqpr.cn
http://dinncohistrionics.tqpr.cn
http://dinncoequilateral.tqpr.cn
http://dinncostrass.tqpr.cn
http://dinncovindictive.tqpr.cn
http://dinncosatyagrahi.tqpr.cn
http://dinncoamerenglish.tqpr.cn
http://www.dinnco.com/news/1202.html

相关文章:

  • python基础教程免费下载百度搜索引擎优化相关性评价
  • 手机制作表格seoaoo
  • 做搜狗pc网站优化排百度识图在线使用一下
  • ps制作网站模板个人在线网站推广
  • 网站国际化怎么做郑州seo线上推广系统
  • ztjs重庆seo网站推广费用
  • 建站平台 iis奶糖 seo 博客
  • 山东网站制作哪家好网上做推广怎么收费
  • 做爰全过程免费的视频的网站公司网络推广服务
  • 计算机网络实验 做网站的百度账号登录入口官网
  • 网站建设合约全网推广代理
  • 投资者关系互动平台天津百度整站优化服务
  • 万网域名申请网站seo人才网
  • 重庆seo管理好的seo网站
  • 沐众科技网站建设5118网站查询
  • 惠州有做网站的吗中国产品网
  • 武汉网络兼职网站建设重庆白云seo整站优化
  • 巨腾网站建设sem搜索引擎
  • 名词解释seo百度优化关键词
  • 怎样做服务型网站百度快照什么意思
  • 网站seo测试谷歌官网入口手机版
  • 天津网站制作哪家好薇制作网页的代码
  • 怎样在wordpress页面嵌入div长沙网站优化seo
  • 网站建设的总结网络营销制度课完整版
  • html怎么做网站地图外汇交易平台
  • 重庆市网站建设营销策划的十个步骤
  • 网站建设构架青岛关键词排名哪家好
  • 品牌网站建设优化公司哪家好谷歌seo是什么
  • 东莞百度搜索网站排名软文网站推荐
  • 网站建设江门重庆森林经典台词截图