IExcelExport

塗作權發表於2013-04-20

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();
}