- 浏览: 166604 次
- 性别:
- 来自: 深圳
最新评论
-
daikwell:
294676001 写道求解压密码
PD4ML实现将html模版转为pdf文件 -
竹之夭夭:
不能return false; 这样写 下拉框显示有问题
ExtJs combobox模糊匹配 -
294676001:
求解压密码
PD4ML实现将html模版转为pdf文件 -
demojava:
........
PD4ML实现将html模版转为pdf文件 -
戴氏家族:
pdf4ml.useTTF("java:fonts& ...
PD4ML在线输出pdf文件内容
文章列表
<build>
<finalName>springmvc</finalName>
<plugins>
<plugin>
<groupId>org.codehaus.cargo</groupId>
<artifactId>cargo-maven2-plugin</artifactId>
<version>1.1.1</version>
<configuration>
<c ...
Ext.MessageBox.show({
title : '请等待',
msg : '文件正在上传中,请稍后...',
progressText : '正在初始化...',
width : 300,
progress : true,
closable : false
});
var f = function(v) {
return function() {
if (v == 12) {
Ext.Message ...
ant 报了warning: modified in the future
google一下,这是个由时间引起的小问题
中国这里的时间,比美国早,所以引起了modified in the future
package com.mingan.application.echannel.renewalpolicy.common.util;
import java.util.Calendar;
import java.util.Date;
import java.util.Timer;
import javax.servlet.ServletContextEvent;
import javax.servlet.ServletContextListener;
import com.prs.framework.core.context.AppContext;
public ...
private static void Md5(String plainText) {
try {
MessageDigest md = MessageDigest.getInstance("MD5");
md.update(plainText.getBytes());
byte b[] = md.digest();
int i;
StringBuffer buf = new StringBuffer("");
for (int offset = 0; offset < b.length; o ...
http://blog.sina.com.cn/s/blog_5a658a610100uojr.html
<ec:column property="#" title="序号" width="50" filterable="false"
sortable="false">${ROWCOUNT}</ec:column>
public class ExportXLSUtil {
public static void export(String filePath, Object[][] values) {
WritableWorkbook book = null;
try {
book = Workbook.createWorkbook(new File(filePath));
WritableSheet sheet = book.createSheet("Sheet_1", 0);
for (int i = 0; i < values.le ...
package com.prs.framework.common.util;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.PrintWriter;
import javax.servlet.http.HttpServletResponse;
public class FileDownloadUtil {
private FileDownloadUtil() {
}
/ ...
tomcat启动时报错:java.lang.RuntimeException: java.lang.reflect.InvocationTargetException
查了一下,原来确实javassist-3.7.ga.jar这个包,从struts2-2.2.1-all.zip的解压文件夹中找到struts2-blank-2.2.1.war,路径:struts2-2.2.1-all\struts-2.2.1\apps\struts2-blank-2.2.1.war,在其lib目录下找到javassist-3.7.ga.jar,然后加入到工程的lib中,发布重启即可解决。
把tomcat的lib里的gnujaxp.jar删了就行了。他是jfreechart的包
解决办法:http://knowledgebase.localentity.com/?p=266
request.---->
<s:property value="#request.mySessionPropKey"/> or
<s:property value="#request['mySessionPropKey']"/> or
<s:property value="#request['myRequestPropKey']"/> or
${requestScope.buttonRoleMap} or
${request.buttonRoleMap} or
...