`
zhouchaofei2010
  • 浏览: 1106390 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
 <c:choose>   <c:when test="${status.index==0}">    style="display:block"   </c:when>   <c:otherwise>    style="display:none"   </c:otherwise> </c:choose>   org.apache.jasper.JasperException: /jsp/statAnal/often/establish/t5_1Detail. ...
The package name 'json-default' at location package - jar:file:/D:/ProgramFiles/apache-tomcat-5.5.20/webapps/jxwpgsh/WEB-INF/lib/jsonplugin.jar!/struts-plugin.xml:8:59 is already been used by another package at location package - jar:file:/D:/ProgramFiles/apache-tomcat-5.5.20/webapps/jxwpgsh/WEB-INF/ ...
在 window.showModalDialog生成的模式对话框(模式窗口)  下载文件 ,页面跳转不能用。   解决之道:对话框引入的页面引入iframe   下载文件例子:   <!--js 方法--> function exportExcel(){ document.getElementById("downFile").src="<%=path %>/statAnal/oftenExcelReport/excel.action?wbName=zx_ds_zdy_wb"; } <!--引入ifr ...
poi   文本字体大小  与单元格字体大小 区别:       RichTextString rts=new HSSFRichTextString(str);  rts.applyFont(font);       CellStyle  void setFont(Font font)           set the font for this style    cell.setCellStyle(cellStyle);
这异常。。。
//遍历该条信息的附件 $(".attachmentListTd").empty(); $(data.listAttachment).each(function(i){ $(".attachmentListTd").append("<a href=\"download.action?storeName="+data.listAttachment[i].storeName+"&fileName="+ data.listAttachment[i].enco ...
 只能 <s:set name="isAllGuidang" value="isAllGuidang"></s:set>  <s:if test="%{#isAllGuidang==false}">   不能直接<s:if test="%{#isAllGuidang==false}">     其中isAllGuidang是action的一个boolean变量,已经有get方法   或者直接<s:if test="%{isAllGuida ...
cellStyle.setAlignment(CellStyle.ALIGN_CENTER);//水平居中 cellStyle.setVerticalAlignment(CellStyle.VERTICAL_CENTER);//垂直居中    注意方法名和参数的区别
 void autoSizeColumn(int column, boolean useMergedCells)           Adjusts the column width to fit the contents.    void autoSizeColumn(int column)           Adjusts the column width to fit the contents.     //列宽 sheet.autoSizeColumn(0,true);//第一列是合并列 for(int i=1;i<=1+years. ...
利用org.apache.poi.ss.util.RegionUtil 来处理合并单元格加边框问题   private static void setRegionBorder(int border, CellRangeAddress region, Sheet sheet,Workbook wb){ RegionUtil.setBorderBottom(border,region, sheet, wb); RegionUtil.setBorderLeft(border,region, sheet, wb); RegionUtil.setBorderRight(border, ...
可以合并的,不过要逐个给每一个被合并的单元格加上边框,这样就ok   有木有其他办法  有木有 ?     poi 文档 FAQ有说明: 12. How do I add a border around a merged cell? Add blank cells around where the cells normally would have been and set the borders individually for each cell. We will probably enhance HSSF in the future to make this p ...
function fileCheck(tdId){//tdId 附件列表所在td的id if($("#"+tdId+" a").size()>0){//如果已经有可下载的文件,则不用必须选择文件 return true; } //alert("fileCheck:"+tdId); var message="请至少选择一个文件" var success = true; var fileSize ...
org.hibernate.StaleStateException: Batch update returned unexpected row count from update: 0 actual row count: 0 expected: 1   原因:经debug,发现更新对象的id在数据库中实际库中的id不对应                  原来是在页面中对对象id的附值过程中  把对象中字典对象的id附给了它,附错了       <input type="hidden" name="developThirds[<s:pr ...
<many-to-one name="proType" class="com.gwideal.jxwpgsh.pojo.SysDictionary" lazy="false" fetch="select" cascade="none" not-found="ignore"> <column name="pro_type" not-null="false" unique="true&q ...
java.lang.IllegalArgumentException: Can not find a java.io.InputStream with the name [excelFile] in the invocation stack. Check the <param name="inputName"> tag specified for this action.         原因:不是inputName配置的方法找不到,是其中的方法中代码出现了异常
Global site tag (gtag.js) - Google Analytics