java文件处理

//1.byte[]转file
File jpg = new File("D:\\aaa.jpg");
FileOutputStream fileout = new FileOutputStream(jpg);
fileout.write(fileByte);
fileout.close();

//2.file转byte[]

File zipFile = new File("D:\\aaa.jpg ");
FileInputStream fin = new FileInputStream(zipFile);
ByteArrayOutputStream bos = new ByteArrayOutputStream(1024);
byte[] b = new byte[1024];
int n;
while ((n = fin.read(b)) != -1) {
        bos.write(b, 0, n);
}
bos.toByteArray()

//3.生成压缩包
private ZipOutputStream jos;
ZipEntry sourEntry = null;
File zipFile = new File("D:\\aaa.zip ");
jos = new ZipOutputStream(new FileOutputStream(zipFile));
sourEntry = new ZipEntry(String.valueOf(new Date().getTime()) + ".jpg");
jos.putNextEntry(sourEntry);   //在此处,如果多个文件打包则new多个 ZipEntry
jos.write(fileByte); //此处我写入的是一个byte[] 如果文件为file则需要自行转换成byte[] 如例2
jos.closeEntry();
jos.close();

//4.写入excel
WritableWorkbook wwb = null;
          wwb = Workbook.createWorkbook(new File("D:\\work_self\\文档\\new.xls"));
          WritableSheet ws = wwb.createSheet("lalala", 0);
          for (int i = 0; i < 10; i++) {
          for (int j = 0; j < 5; j++) {
          // 这里需要注意的是,在Excel中,第一个参数表示列,第二个表示行
          Label labelC = new Label(j, i, "这是第" + (i + 1) + "行,第" + (j + 1) + "列");
          try {
          // 将生成的单元格添加到工作表中
          ws.addCell(labelC);
          } catch (RowsExceededException e) {
          e.printStackTrace();
          } catch (WriteException e) {
          e.printStackTrace();
          }         
          }
          }
          wwb.write();
          wwb.close();

//5.读取excel
InputStream instream = new FileInputStream("D:\\work_self\\文档\\rjs_jz.xls");
jxl.Workbook wbk = Workbook.getWorkbook(instream);
Sheet sheet = wbk.getSheet(0);
for (int i = 0; i < sheet.getRows(); i++) {
            String datumId = sheet.getCell(0, i).getContents().trim();// 获取第一个数值
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值