`
Java_大猫
  • 浏览: 173454 次
  • 性别: Icon_minigender_1
  • 来自: 大连
社区版块
存档分类
最新评论

JXL取日期时yy-mm-dd 转成yyyy-mm-dd

    博客分类:
  • J2SE
阅读更多
	private static String getCellTypeForDate(Cell   cellObject) {
		  String dateStr="";
		  if(cellObject.getType()==CellType.DATE){
			  DateCell   cellValue   =   (DateCell)cellObject;  
			  Date   dt   =   cellValue.getDate();  
			  SimpleDateFormat   formatter   =   new   SimpleDateFormat("yyyy-MM-dd");  
			  dateStr   =   formatter.format(dt);  
		  }
		  return dateStr;
	}
分享到:
评论

相关推荐

    Java实现Excel导入数据库,有完整的sql。jxl.jar,mysql-connector-java-5[1].1.7-bin.jar.zip

    - 将数据转换为数据库所需的格式,例如,日期需要转换为`yyyy-MM-dd`格式,数字需要确保没有多余的逗号或货币符号。 - 构建SQL INSERT语句,例如:`INSERT INTO table_name (column1, column2, ...) VALUES (?, ?,...

    JXL写入Excel (包括样式、列宽、列高特殊格式、剧中、字体等操作)

    cellFormat.setDataFormat(jxl.format.DataFormat.getDateFormat("yyyy-MM-dd")); ``` 然后,你可以创建一个`Date`对象并将其转换为`WritableCell`: ```java Date date = new Date(); DateCell dateCell = new ...

    java jxl 下载(提示保存)

    // * 定义显示日期的公共格式如:yyyy-MM-dd hh:mm SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String newdate = sdf.format(new Date()); // 填充出产日期 label = new Label(4, 1, newdate...

    jxl导出Excel

    DateFormat format = new SimpleDateFormat("yyyy-MM-dd"); WritableDate writableDate = new WritableDate(0, 1, format.format(date)); sheet.addCell(writableDate); ``` 在Excel中,有时我们可能需要将字符串...

    Jxl使用总结

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateStr = sdf.format(new Date()); Label dateLabel = new Label(column, row, dateStr); sheet.addCell(dateLabel); ``` 4. *...

    Java通过POI和JXL给Excel动态添加水印

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日HH时mm分ss秒"); return sdf.format(date); } public void setDate(Date date) { this.date = date; } } ``` ### 步骤二:编写工具类 接下来,...

    java操作excel(jxl)

    WritableCellFormat dateFormat = new WritableCellFormat(new SimpleDateFormat("dd/MM/yyyy")); jxl.write.DateTime dateTime = new jxl.write.DateTime(0, 0, date, dateFormat); writableSheet.addCell...

    Java通过POI和JXL给Excel动态添加水印.docx

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy 年 MM 月 dd 日 HH 时 mm 分 ss 秒"); return sdf.format(date); } } ``` 接下来,我们编写一个工具类`Utilss`,其中包含核心的水印生成逻辑。`Utilss`类中...

    读取Excel文件将数据存入map集合

    - 数值:判断是否为日期格式,若是则格式化为`yyyy-mm-dd`,否则使用`NumberFormat`格式化。 - 字符串:`cellContext = cell.getStringCellValue();` 4. **存储至Map结构**: - 每一行的数据被存储到一个`Map, ...

    java操纵excel的jar包

    WritableCellFormat cellFormat = new WritableCellFormat(new SimpleDateFormat("yyyy-MM-dd")); Label label = new Label(0, 0, date, cellFormat); sheet.addCell(label); ``` 7. **内存效率**:在处理大型Excel...

    SpringBoot整合poi实现Excel文件的导入和导出.pdf

    SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); return sdf.format(cell.getDateCellValue()); } // 数值,使用BigDecimal包装避免科学计数法 BigDecimal bd = new BigDecimal(cell....

    数据库系统代码

    在构造函数中,`new SimpleDateFormat("特定格式")`会创建一个日期格式化对象,例如"yyyy-MM-dd"。日期字段可能需要转换成字符串以便显示在表格中。 6. **文件和输入/输出流**: 虽然代码中没有直接涉及文件读写,但...

    java接卸excel

    WritableCellFormat dateFormat = new WritableCellFormat(new SimpleDateFormat("dd/MM/yyyy")); Date date = new Date(); Label dateLabel = new Label(0, 1, date, dateFormat); sheet.addCell(dateLabel);...

    java对excel操作

    dateCell.setDateFormat("dd/MM/yyyy"); ``` 5. **样式与格式**:JXL还允许设置单元格的样式,如字体、颜色、边框等。例如,可以创建一个`WritableFont`和`WritableCellFormat`对象,然后应用到单元格上。 ```...

    java读写excel的操作文档

    WritableCellFormat dateFormat = new WritableCellFormat(new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")); DateCell dateCell = new DateCell(date, dateFormat); sheet.addCell(dateCell); ``` 4. 最后,别忘...

Global site tag (gtag.js) - Google Analytics