package com.css.common.excel;
import java.io.*;
import java.util.List;
/**
*
* 定义DB导入Excel的接口 <br>
* Create Time :2007/10/09 <br>
* Update Time :2009/10/09 by <br>
* @version 1.0
*
*/
public interface IExcelExport {
/**
* 把Excel写入输出流
*
* @param output
* @throws Exception
*/
public void exportExcel(OutputStream output) throws Exception;
/**
* Excel写入文件
*
* @param file
* @throws Exception
*/
public void exportExcel(File file) throws Exception;
/**
* 得到字段名
*
* @return 返回字段名的集合
*/
public List getColumnFiledList();
/**
* 得到表列名
*
* @return 返回表列名的集合
*/
public List getColumnNameList();
}