PS:第二種方法還不完善,DisplayTag中仍存在一些Bug.3.導出中文Excel問題:當導出中文列表名和中文表格數據Excel時,會產生亂碼現象.
解決:
更改配置文件displaytag.properties,使用displaytag-export-poi.jar包.更改 export.excel.class=org.displaytag.export.ExcelView爲 export.excel.class=org.displaytag.excel.ExcelHssfView,這樣能夠解決中文表格數據的問題.對於中文列表名亂碼的問題,必須更改org.displaytag.excel.ExcelHssfView源代碼:old:
HSSFCell cell = xlsRow.createCell((short) colNum++);
cell.setCellValue(columnHeader);
cell.setCellStyle(headerStyle);
cell.setEncoding(HSSFCell.ENCODING_UTF_16);new:
HSSFCell cell = xlsRow.createCell((short) colNum++);
cell.setEncoding(HSSFCell.ENCODING_UTF_16);
cell.setCellValue(columnHeader);
cell.setCellStyle(headerStyle);還有一種經過修改編碼方式來支持中文的方法,那就是將 org.displaytag.export.ExcelView.java中的getMimeType()方法內容修改成return "application/vnd.ms-excel;charset=GB2312";可是這樣修改後,導出速度將會很是慢,呵呵.4.decorator內容沒法導出問題和Html標籤導出問題:若是對table進行了decorator,那麼decorator後的內容將沒法導出.目前此問題沒法解決.因此最好不用decorator.若是顯示的內容使用了html標籤進行了修飾,那麼它會將html標籤一塊兒導出.也是沒有什麼好的解決方法.5.導出Excel兼容性問題:有時會出現兼容性問題,導出的Excel在Office 2003下打不開.
PS:導出問題很多,尤爲是Excel.建議使用Apache POI本身實現Excel的導出.6.同頁面使用多個displayTag翻頁問題.DisplayTag翻頁時,頁面上全部的displayTag元素都翻頁.解決辦法:對頁面中的每一個表格,先判斷它的記錄是否爲0,若是爲0則不使用DisplayTag.7.未知Bug比較多:正式發佈版本老是存在不少Bug.在1.1版本發佈時,竟然分頁算法出現了明顯Bug,無語.
======================第三篇=====================================html
碰到的導出excel報表的實際需求,所得到的一些學習心得與技巧與你們分享.
默認的displayTag導出的Excel格式會有中文亂碼,網上大部分文章都說只有改一下,org.displaytag.export.ExcelView類中,
public String getMimeType()
{
return "application/vnd.ms-excel"; //$NON-NLS-1$
}
方法,在方法後面追加;chartset=gbk;其它不盡然,若是這樣改的話在tomcat做爲web服務端的話,若是列表中有中文,很慢很慢纔會有導出(不過,我至今還沒有在tomcat下導出過中文),
把WEB應用佈署在JBOSS下面,導出的話,若是數據量大的話也會有20-40秒不等,後來到displayTag的官網上,去看它的bugtrack,發現其實不盡然。其它displayTag若是在你須要導出excel而且想自已利用apache的
POI的話,要再去到官方網上下載一個displaytag-export-poi-1.1.jar的包,詳細操做請看http://displaytag.sourceforge.net/11/install.html
其中裏面談到,若是,每次導出的excel數據老是有緩存的話,能夠在web.xml文件中加入以下配置進行過濾,這樣就能夠導出實時數據了。
Configure the Filter in your web.xml:
<filter>
<filter-name>ResponseOverrideFilter</filter-name>
<filter-class>org.displaytag.filter.ResponseOverrideFilter</filter-class>
</filter>And add mappings for the pages that you will intercept, for example:
<filter-mapping>
<filter-name>ResponseOverrideFilter</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
<filter-mapping>
<filter-name>ResponseOverrideFilter</filter-name>
<url-pattern>*.jsp</url-pattern>
</filter-mapping>
從以上內容來看,也只是告訴你,若是要用apache的最新的POI的話,須要把displaytag-export-poi-1.1.jar從官網下載下來,放入你的工程文件中,
並無說如何調用寫本身的所需的excel的報表格式.下面就實際問題,來討論一下如何讓displayTag導出本身所需的excel格式.
在displayTag所提供的接口類中,導出自已所需的Excel有兩種方式,一種是經過指定的excel模板,一種是對excel的全部的格子,一個個樣式的處理,
後一種方式徹底體現了「慢工出細活」的格言,而前一種方式實現起來顯然要好用得多,只用讀模板的樣式就好了。如何調用displayTag對導出自定製的Excel文件
所提供的接口呢,請看下文,(不要急噢!^_^)
要調用displayTag給Poi所提供的接口操做步驟以下:
1,先要在你的appfuse工程中新建一個類,讓其實現org.displaytag.export.BinaryExportView接口,其中關鍵的方法是
public void doExport(OutputStream out) throws JspException {
String captionvalue = this.model.getCaption();
// ExcelHssfView1 tempExcelView=new ExcelHssfView1();
// try {
// BeanUtils.setProperty(tempExcelView, "action",captionvalue);
// } catch (IllegalAccessException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// } catch (InvocationTargetException e) {
// // TODO Auto-generated catch block
// e.printStackTrace();
// }
if (captionvalue != null) {
captionvalue = captionvalue.replaceAll("(\\r)|(\\n)|(\\t)", "");
doExportCommon(out);
} else {
System.out.println("exec Common");
doExportCommon(out);
}
}
對這個方法按照你的POI的定製excel報表的的方法,而後實現它,再把內容寫入outputStream中去,基本上就能夠了,固然若是有上面的
this.model.getCaption()是讀取displayTag的頁面標籤<displayTag:caption/>標籤中的內容,能夠在不一樣的JSP頁面放入不一樣的caption的值
從而判斷調用不一樣的方法,生成不一樣的excel樣式的報表,靈活性兼而有之.
寫完以上類之後,最好先寫個測試方法,用main或junit工具都成,看看你的調用poi的邏輯有沒有問題。
當以上的類及方法寫完後,就要在你的appfuse工程中找displaytag.properties文件了,通常就在web/class/目錄下,找到後,打開此文件,添加以下一段配置:
export.excel.class=org.displaytag.export.excel.ExcelHssfView1
後面一段是你的新建的類的文件的路徑
由於是多國語言系統,因此最好把display_en.properties及display_zh_Cn.properties都加上.
到此就完成了,使用本身的POI來在appfuse中導出指定格式樣式的excel文件.先別急噢,還有更精彩的等着你。這個時候又有一個問題來了,若是你
頁面想要顯示某些列表字段列,而導出的excel文件中又不出現這樣的字段,又該如何處理呢,嘿嘿,請接着看下文。
若是要實現以上功能請以下操做:
1,調整頁面上的displayTag標籤的參數值,呵,好比:
<display:table name="testList" cellspacing="0" cellpadding="0" requestURI="" sort="list"
id="testList" pagesize="5" class="table testList" export="true"
defaultsort="1" defaultorder="descending" >
<display:caption media="excel">ExportByCommon</display:caption>
<display:column title="ID" sortable="true" media="html">
<a href="/aaa.html?id=<c:out value="${testList.id }" /> "
target="operationFrame">
<c:out value="${testList.id }" />
</a>
</display:column>
<display:column title="Status" sortable="true" media="html">
<img src="<c:out value="${testList.status}" />.gif" title="<c:out value="Status:${testList.status}" />">
</display:column>
<display:column property="remarks" escapeXml="true" sortable="true"
title="Remarks" style="word-wrap: break-word;word-break: break-all; width:90px;"/>
<display:footer media="excel">
<c:out value="${aa }"></c:out>|
<c:out value="(${bb })"></c:out>|
<c:out value="${currentDate }"></c:out>
</display:footer>
<display:setProperty name="item_name" value="Info"/>
<display:setProperty name="items_name" value="Infos"/>
<display:setProperty name="export.excel" value="true" />
<display:setProperty name="export.excel.filename" value="<%=exportFileName%>"/>
<display:setProperty name="export.csv" value="false" />
<display:setProperty name="export.xml" value="false" />
<display:setProperty name="export.pdf" value="false" />
</display:table>
</form>
注意上面用了多種配置需求,能夠自已加連接,自定義導出名,自定義表頭表尾,自定義是否全排序,自定義樣式等,這些網上都有,就不細說了,
關鍵的需求點media的配置參數噢,若是media="excel"表示只在excel中顯示,若是media=html表示僅在頁面出現,沒有此參數是兩個都顯示噢
其它的格式也類同設置,到此displayTag的點點心得分享與你們完畢,謝謝你們花費時間分享個人快樂!^_^
噢,上文提到中文問題,用POI後就解決了!
==============================第四篇=============================
displaytag-1.1.1之中文(亂碼)解決方案
1,displaytag頁面的漢化:
把displaytag.properties考到項目裏,同時複製一份displaytag.properties,修改文件名displaytag_zh_CN.properties,把文件裏面的對應條目改爲中文便可 ;
同時,文件裏的對應兩條配置注意選擇合適的使用,下面是struts的配置
locale.provider=org.displaytag.localization.I18nStrutsAdapter
locale.resolver=org.displaytag.localization.I18nStrutsAdapter
2,excel導出中文內容亂碼:
重載類org.displaytag.export.ExcelView,複寫
public String getMimeType(){
return "application/vnd.ms-excel;charset=gbk" ; //$NON-NLS-1$
}
原代碼是return "application/vnd.ms-excel"; //$NON-NLS-1$
修改displaytag_zh_CN.properties中對應條目:
export.excel.class=yourpackage.SimpleChineseExcelView
3,Excel導出文件名中文亂碼:
重載類org.displaytag.tags.SetPropertyTag,複寫
private String value;
public void setValue(String propertyValue){
try{
this.value = new String(propertyValue.getBytes("GBK"),"ISO-8859-1");
}catch(Exception e){
this.value = propertyValue;
}
super.setValue(this.value);
}
修改displaytag.tld對應條目
<name>setProperty</name>
<!-- <tag-class>org.displaytag.tags.SetPropertyTag</tag-class> -->
<tag-class>yourpackage.SimpleChineseSetPropertyTag </tag-class>
在jsp中應用時
<display:setProperty name="export.excel.filename" value="導出中文名稱.xls "/>
注意,這種解決方案只能解決value的中文名稱,而不能解決bodycontent內的中文名稱,如
<display:setProperty name="export.excel.filename">導出菜單.xls</ display:setProperty >
4,Excel導出文件名中文亂碼bodycontent中的不完美解決方案
<display:setProperty name="export.excel.filename">
<%=new String("導出菜單.xls".getBytes("GBK"),"ISO-8859-1") %>
</display:setProperty>
這種解決方案之因此稱之爲不完美適應爲它要藉助頁面中的java代碼實現
使用Mesources
<display:setProperty name="export.excel.filename">
<%
MessageResources mrs = (MessageResources)request.getAttribute("org.apache.struts.action.MESSAGE");
String fileName = mrs.getMessage("menu.export.excel.filename");
fileName = new String(fileName.getBytes("GBK"),"ISO-8859-1");
out.print(fileName);
%>
</display:setProperty>
java