jxl 读写excel

/*
* jxl 读写excel 
* 
* 
* */

//首先将jxl.jar导入到项目中来
import jxl.*; 
import jxl.format.UnderlineStyle;
import jxl.write.*; 
import jxl.write.Boolean;
import jxl.write.Number;

import java.io.*; 
import java.io.File.*; 
import java.util.*; 


class ExcelHandle
{
ExcelHandle(){}
public static String readExcel(String filePath)
{
String rul="";
try
{
InputStream is = new FileInputStream(filePath);
Workbook rwb = Workbook.getWorkbook(is);
//Sheet st = rwb.getSheet("0")这里有两种方法获取sheet表,1为名字,而为下标,从0开始
Sheet st = rwb.getSheet(0);
int rsColumns = st.getColumns();
int rsRows = st.getRows(); 
System.out.println("rows:"+rsRows+" cols:"+rsColumns);
String temp;
for(int i=0;i<rsRows; i++)
{ 
for(int j=0;j<rsColumns;j++)
{
Cell cont = st.getCell(j,i);
temp = cont.getContents();
rul += temp +"</C>";
}
rul += "</R>";
}
/*Cell c00 = st.getCell(0,0);
String strc00 = c00.getContents(); 
if(c00.getType() == CellType.LABEL)
{
LabelCell labelc00 = (LabelCell)c00;
strc00 = labelc00.getString();
}
*/
rwb.close();
}
catch(Exception e)
{
e.printStackTrace();
}
return rul;
}

public static void writeExcel(OutputStream os)
{
try
{
/**
* 只能通过API提供的工厂方法来创建Workbook,而不能使用WritableWorkbook的构造函数,
* 因为类WritableWorkbook的构造函数为protected类型
* method(1)直接从目标文件中读取WritableWorkbook wwb = Workbook.createWorkbook(new File(targetfile));
* method(2)如下实例所示 将WritableWorkbook直接写入到输出流

*/
WritableWorkbook wwb = Workbook.createWorkbook(os);
//创建Excel工作表 指定名称和位置
WritableSheet ws = wwb.createSheet("Test Sheet 1",0);

//**************往工作表中添加数据*****************

//1.添加Label对象
Label label = new Label(0,0,"this is a label test");
ws.addCell(label);

//添加带有字型Formatting对象
WritableFont wf = new WritableFont(WritableFont.TIMES,18,WritableFont.BOLD,true);
WritableCellFormat wcf = new WritableCellFormat(wf);
Label labelcf = new Label(1,0,"this is a label test",wcf);
ws.addCell(labelcf);

//添加带有字体颜色的Formatting对象
WritableFont wfc = new WritableFont(WritableFont.ARIAL,10,WritableFont.NO_BOLD,false, UnderlineStyle.NO_UNDERLINE,jxl.format.Colour.RED);
WritableCellFormat wcfFC = new WritableCellFormat(wfc);
Label labelCF = new Label(1,0,"This is a Label Cell",wcfFC);
ws.addCell(labelCF);

//2.添加Number对象
Number labelN = new Number(0,1,3.1415926);
ws.addCell(labelN);

//添加带有formatting的Number对象
NumberFormat nf = new NumberFormat("#.##");
WritableCellFormat wcfN = new WritableCellFormat(nf);
Number labelNF = new jxl.write.Number(1,1,3.1415926,wcfN);
ws.addCell(labelNF);

//3.添加Boolean对象
Boolean labelB = new jxl.write.Boolean(0,2,false);
ws.addCell(labelB);

//4.添加DateTime对象
jxl.write.DateTime labelDT = new jxl.write.DateTime(0,3,new java.util.Date());
ws.addCell(labelDT);

//添加带有formatting的DateFormat对象
DateFormat df = new DateFormat("dd MM yyyy hh:mm:ss");
WritableCellFormat wcfDF = new WritableCellFormat(df);
DateTime labelDTF = new DateTime(1,3,new java.util.Date(),wcfDF);
ws.addCell(labelDTF);


//添加图片对象,jxl只支持png格式图片
File image = new File("f:\\2.png");
WritableImage wimage = new WritableImage(0,1,2,2,image);
ws.addImage(wimage);
//写入工作表
wwb.write();
wwb.close();
}
catch(Exception e)
{
e.printStackTrace();
}
}

public static void modifyExcel(File file1,File file2)
{
try
{
Workbook rwb = Workbook.getWorkbook(file1);
WritableWorkbook wwb = Workbook.createWorkbook(file2,rwb);//copy
WritableSheet ws = wwb.getSheet(0);
WritableCell wc = ws.getWritableCell(0,0);
//判断单元格的类型,做出相应的转换
if(wc.getType() == CellType.LABEL)
{
Label label = (Label)wc;
label.setString("The value has been modified");
}
wwb.write();
wwb.close();
rwb.close();
}
catch(Exception e)
{
e.printStackTrace();
}
}

}


public class excel 
{ 
public static void main(String[] args) 
{ 

try
{
String filepath="d:/1.xls";
//读Excel
String str = ExcelHandle.readExcel(filepath);
System.out.println(str);
String[] str1=str.split("</R>");
for(int i=0; i<str1.length; i++)
{
String[] str2 = str1[i].split("</C>");
for(int j=0; j<str2.length; j++)
System.out.print(str2[j]+" ");
System.out.print("\n");
}


//输出Excel
File fileWrite = new File("D:/2.xls");
fileWrite.createNewFile();
OutputStream os = new FileOutputStream(fileWrite);
// ExcelHandle.writeExcel(os);
//修改Excel
// ExcelHandle.modifyExcel(new File(""),new File(""));
}
catch(Exception e)
{
e.printStackTrace();
}
/*

String targetfile = "d:/out.xls " ; //输出的excel文件名 
String worksheet = "List" ; //输出的excel文件工作表名 
String[] title = {"ID" , "NAME" , "DESCRIB" }; //excel工作表的标题 


WritableWorkbook workbook; 
try 
{ 
//创建可写入的Excel工作薄,运行生成的文件在tomcat/bin下 
//workbook = Workbook.createWorkbook(new File("output.xls")); 
System.out.println("begin" ); 

OutputStream os=new FileOutputStream(targetfile); 
workbook=Workbook.createWorkbook(os); 

WritableSheet sheet = workbook.createSheet(worksheet, 0 ); //添加第一个工作表 

jxl.write.Label label; 
for ( int i= 0 ; i<title.length; i++) 
{ 
//Label(列号,行号 ,内容 ) 
label = new jxl.write.Label(i, 0 , title[i]); //put the title in row1 
sheet.addCell(label); 
} 
//下列添加的对字体等的设置均调试通过,可作参考用 

//添加数字 
//jxl.write.Number number = new jxl.write.Number( 3 , 4 , 3.14159 ); //put the number 3.14159 in cell D5 
sheet.addCell(new jxl.write.Number( 3 , 4 , 3.14159 )); 
sheet.addCell(new jxl.write.Number( 3 , 14 , 14 )); 
sheet.addCell(new jxl.write.Number( 3 , 15 , 15 )); 
sheet.addCell(new jxl.write.Label( 3 , 16 , "2011-9-11")); 

//添加带有字型Formatting的对象 
jxl.write.WritableFont wf = new jxl.write.WritableFont(WritableFont.TIMES, 10 ,WritableFont.BOLD, true ); 
jxl.write.WritableCellFormat wcfF = new jxl.write.WritableCellFormat(wf); 
jxl.write.Label labelCF = new jxl.write.Label( 4 , 4 , "文本" ,wcfF); 
sheet.addCell(labelCF); 

//添加带有字体颜色,带背景颜色 Formatting的对象 
jxl.write.WritableFont wfc = new jxl.write.WritableFont(WritableFont.ARIAL, 10 ,WritableFont.BOLD, false ,jxl.format.UnderlineStyle.NO_UNDERLINE,jxl.format.Colour.RED); 
jxl.write.WritableCellFormat wcfFC = new jxl.write.WritableCellFormat(wfc); 
wcfFC.setBackground(jxl.format.Colour.BLUE); 
jxl.write.Label labelCFC = new jxl.write.Label( 1 , 5 , "带颜色" ,wcfFC); 
sheet.addCell(labelCFC); 

//添加带有formatting的Number对象 
jxl.write.NumberFormat nf = new jxl.write.NumberFormat( "#.##" ); 
jxl.write.WritableCellFormat wcfN = new jxl.write.WritableCellFormat(nf); 
jxl.write.Number labelNF = new jxl.write.Number( 1 , 1 , 3.1415926 ,wcfN); 
sheet.addCell(labelNF); 

//3.添加Boolean对象 
jxl.write.Boolean labelB = new jxl.write.Boolean( 0 , 2 , false ); 
sheet.addCell(labelB); 

//4.添加DateTime对象 
jxl.write.DateTime labelDT = new jxl.write.DateTime( 0 , 3 , new java.util.Date()); 
sheet.addCell(labelDT); 

//添加带有formatting的DateFormat对象 
jxl.write.DateFormat df = new jxl.write.DateFormat( "ddMMyyyyhh:mm:ss" ); 
jxl.write.WritableCellFormat wcfDF = new jxl.write.WritableCellFormat(df); 
jxl.write.DateTime labelDTF = new jxl.write.DateTime( 1 , 3 , new java.util.Date(),wcfDF); 
sheet.addCell(labelDTF); 

//和宾单元格 
//sheet.mergeCells(int col1,int row1,int col2,int row2);//左上角到右下角 
sheet.mergeCells(4 , 5 , 8 , 10 ); //左上角到右下角 
wfc = new jxl.write.WritableFont(WritableFont.ARIAL, 40 ,WritableFont.BOLD, false ,jxl.format.UnderlineStyle.NO_UNDERLINE,jxl.format.Colour.GREEN); 
jxl.write.WritableCellFormat wchB = new jxl.write.WritableCellFormat(wfc); 
wchB.setAlignment(jxl.format.Alignment.CENTRE); 
labelCFC = new jxl.write.Label( 4 , 5 , "单元合并" ,wchB); 
sheet.addCell(labelCFC); // 


//设置边框 
jxl.write.WritableCellFormat wcsB = new jxl.write.WritableCellFormat(); 
wcsB.setBorder(jxl.format.Border.ALL,jxl.format.BorderLineStyle.THICK); 
labelCFC = new jxl.write.Label( 0 , 6 , "边框设置" ,wcsB); 
sheet.addCell(labelCFC); 
workbook.write(); 
workbook.close(); 
}catch (Exception e) 
{ 
e.printStackTrace(); 
} 
System.out.println("end" ); 
Runtime r=Runtime.getRuntime(); 
Process p=null ; 
//String cmd[]={"notepad","exec.java"}; 
String cmd[]={"H:\\Program Files\\Microsoft Office\\OFFICE14\\EXCEL.EXE" , "d:\\out.xls" }; 
try { 
p=r.exec(cmd); 
} 
catch (Exception e){ 
System.out.println("error executing: " +cmd[ 0 ]); 
} 

*/
} 
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值