package com.jokey.wisdomaldetection.utils;
import android.content.Context;
import android.os.Environment;
import android.util.Log;
import com.jokey.wisdomaldetection.R;
import com.jokey.wisdomaldetection.teble.TestDataTable;
import org.litepal.crud.DataSupport;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Set;
import jxl.Workbook;
import jxl.format.Colour;
import jxl.format.UnderlineStyle;
import jxl.format.VerticalAlignment;
import jxl.write.Label;
import jxl.write.WritableCellFormat;
import jxl.write.WritableFont;
import jxl.write.WritableSheet;
import jxl.write.WritableWorkbook;
/**
* Created by Administrator on 2018/3/27.
*/
public class WriteToExcelUtils {
private static List<TestDataTable> DataList;
public static void saveFile(String fileName, Context context, int rawid) throws IOException {
// 首先判断该目录下的文件夹是否存在
File dir = new File(Environment.getExternalStorageDirectory() + "/Wisdom/");
if (!dir.exists()) {
// 文件夹不存在 , 则创建文件夹
dir.mkdirs();
}
// 判断目标文件是否存在
File file1 = new File(dir, fileName);
if (!file1.exists()) {
file1.createNewFile(); // 创建文件
}
// 开始进行文件的复制
InputStream input = context.getResources().openRawResource(rawid); // 获取资源文件raw
// 标号
try {
FileOutputStream out = new FileOutputStream(file1); // 文件输出流、用于将文件写到SD卡中
// -- 从内存出去
byte[] buffer = new byte[1024];
int len = 0;
while ((len = (input.read(buffer))) != -1) { // 读取文件,-- 进到内存
out.write(buffer, 0, len); // 写入数据 ,-- 从内存出
}
input.close();
out.close(); // 关闭流
} catch (Exception e) {
e.printStackTrace();
}
}
public static void printer(Context context) {
try {
saveFile("wisdom.xls", context, R.raw.wisdom);//文件目录res/raw
String wisdomExcel = Environment.getExternalStorageDirectory() + "/wisdom/wisdom.xls";
// 打开文件
WritableWorkbook workbook = Workbook.createWorkbook(new File(wisdomExcel));
Set date = new HashSet();
DataList = DataSupport.findAll(TestDataTable.class);
WritableSheet[] sheet=new WritableSheet[20];
for(int i=0;i<DataList.size();i++){
date.add(DataList.get(i).getMt().substring(0,11));
}
Iterator it = date.iterator();
int k=0;
while (it.hasNext()){
sheet[k]=workbook.createSheet(String.valueOf(it.next()),k++);
}
/**
* 自定义单元格
* 定义格式 字体 下划线 斜体 粗体 颜色
*/
WritableFont wf_title = new WritableFont(WritableFont.TIMES, 20, WritableFont.BOLD, false, UnderlineStyle.NO_UNDERLINE, jxl.format.Colour.RED);
WritableCellFormat wcf_title = new WritableCellFormat(wf_title); // 单元格定义
wcf_title.setBackground(jxl.format.Colour.BLACK); // 设置单元格的背景颜色
wcf_title.setAlignment(jxl.format.Alignment.CENTRE); // 设置对齐方式
//wcf_title.setBorder(jxl.format.Border.ALL, jxl.format.BorderLineStyle.MEDIUM, Colour.BLACK);
/**
* 自定义单元格
* 定义格式 字体 下划线 斜体 粗体 颜色
*/
WritableFont wf_center = new WritableFont(WritableFont.TIMES, 10, WritableFont.BOLD, false, UnderlineStyle.NO_UNDERLINE, Colour.BLACK);
WritableCellFormat wcf_center = new WritableCellFormat(wf_center); // 单元格定义
wcf_center.setBackground(jxl.format.Colour.BLACK); // 设置单元格的背景颜色
wcf_center.setAlignment(jxl.format.Alignment.CENTRE); // 水平居中
wcf_center.setVerticalAlignment(VerticalAlignment.CENTRE);//竖直居中
wcf_center.setBorder(jxl.format.Border.ALL, jxl.format.BorderLineStyle.MEDIUM, Colour.BLACK);
/**
* 添加基本样式
*/
// 1.添加Label对象三个参数意思:【列,行,值】
sheet[0].addCell(new Label(0, 0, "导杆压降测量结果", wcf_title)); // 普通的带有定义格式的单元格
sheet[0].mergeCells(0, 0, 12, 1); // 标题合并单元格
//添加日期
sheet[0].addCell(new Label(1,2,"2018-3-31",wcf_center));//模拟插入槽号数值
sheet[0].addCell(new Label(0,2,"测量日期",wcf_center));
sheet[0].mergeCells(1, 2, 12, 2); // 槽号合并单元格
//添加槽号
sheet[0].addCell(new Label(1,3,"5120",wcf_center));//模拟插入槽号数值
sheet[0].addCell(new Label(0,3,"槽号",wcf_center));
sheet[0].mergeCells(1, 3, 12, 3); // 槽号合并单元格
sheet[0].addCell(new Label(0,4,"A面",wcf_center));
sheet[0].mergeCells(0, 4, 0, 5); // A面合并单元格
for(int i=0;i<12;i++){
sheet[0].addCell(new Label(i+1,4,""+(i+1),wcf_center));
//模拟插入数据
sheet[0].addCell(new Label(i+1,4+1,""+(i+500),wcf_center));
}
sheet[0].addCell(new Label(0,6,"B面",wcf_center));
sheet[0].mergeCells(0, 6, 0, 7); // B面合并单元格
for(int i=0;i<12;i++){
sheet[0].addCell(new Label(i+1,6,""+(i+1),wcf_center));
//模拟插入数据
sheet[0].addCell(new Label(i+1,6+1,""+(i+500),wcf_center));
}
// 写入数据并关闭文件
workbook.write();
workbook.close();
//Toast.makeText(this,"保存成功",Toast.LENGTH_SHORT).show();
Log.i("jokeyWriteToExcel","Excel---保存成功");
//以下代码是连接打印机的,这边没有用到,所以可以忽略
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.i("jokeyWriteToExcel","excel失败---"+e.toString());
}
}
}
2018-03-31
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 上回书说到“文案小白怎么入手”?今儿咱来唠扯唠扯“想跨专业做文案的人儿怎么入行”哈~我采访了两位朋友,一个是从会计...