package yuebao;import java.io.*;
import jxl.*;
public class CallRecord2 
{
public static void main(String[] args) 
{
try
{
jxl.write.WritableWorkbook rwb = Workbook.createWorkbook(new File("2007-6-28.xls"));

jxl.write.WritableSheet rs = rwb.getSheet(0);
jxl.write.Label labelC = new jxl.write.Label(1, 1, "This is a Label cell"); rs.addCell(labelC);
rwb.write();
rwb.close(); }
catch (Exception e)
{
e.printStackTrace();
}
}}