office
文章平均质量分 71
三三得九_尚
性格外向,爱学习
展开
-
创建Excel
private static void excelCreate()throws Exception{ File file = new File("F://a.xls"); //创建可写入的Excel工作薄 WritableWorkbook wwb = jxl.Workbook.createWorkbook(file); //下边这个方法也可以 // OutputStream os = n原创 2013-03-19 19:46:42 · 676 阅读 · 0 评论 -
读取Excel中内容
public static void main(String[] args) throws Exception{ redExcel(); } private static void redExcel() throws Exception{ File file = new File("F://a.xls"); InputStream is = new FileInputStream(fi原创 2013-03-19 19:55:03 · 645 阅读 · 1 评论