读excel数据怎么把设为常规的日期在java中读成string类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了读excel数据怎么把设为常规的日期在java中读成string类型相关的知识,希望对你有一定的参考价值。
在excel中为20100101在java中读出来就成了2.0101231E7,我怎么让他在java中读出来为String类型的20100101
设置单元格的格式为字符串格式,就可以了.用jxl读出来的时候
//添加带有formatting的DateFormat对象
DateFormat df = new DateFormat("dd MM yyyy hh:mm:ss");
WritableCellFormat wcfDF = new WritableCellFormat(df);
DateTime labelDTF = new DateTime(列,行,new java.util.Date(),wcfDF);
ws.addCell(labelDTF); 参考技术A 用jxl,excel里面写的什么,读出来就是什么
Java自用IO流中读数据中的难点
源码:
public int read(char cbuf[]) throws IOException {
return read(cbuf, 0, cbuf.length);
}
//2.FileReader流的实例化
fr = new FileReader(file);
//3.读入的操作
//read(char[] cbuf):返回每次读入cbuf数组中的字符的个数。如果达到文件末尾,返回-1
char[] cbuf = new char[5];
int len;
while((len = fr.read(cbuf)) != -1){
//方式一 正确的写法
// for(int i = 0;i < len;i++){
// System.out.print(cbuf[i]);
// }
//方式二:
//正确的写法
String str = new String(cbuf,0,len);
System.out.print(str);
以上是关于读excel数据怎么把设为常规的日期在java中读成string类型的主要内容,如果未能解决你的问题,请参考以下文章