- 浏览: 222091 次
- 性别:
- 来自: 沈阳
最新评论
-
youjianbo_han_87:
直接在国际化配置里配置就可以,不用重写。
struts2 文件上传自定义信息提示 -
来利强:
很好啊,取 时、分 时好乱啊
oracle extract -
younglibin:
这些东西 在 那个jar中,那个文件能查的到?
struts2 下载配置contentType属性 -
uule:
木看懂!木看懂!
struts2 文件上传自定义信息提示 -
happyxing:
问题相同,我也纠结
oracle动态表名
文章列表
import org.apache.commons.codec.binary.Base64;
public String fileNameFixer(String fileName){
String agent = (String)request.getHeader("USER-AGENT");
String enableFileName = "";
try{
if(agent != null && agent.indexOf("MSIE") == -1) {// FF
...
String agent = (String)request().getHeader("USER-AGENT");
if(agent != null && agent.indexOf("MSIE") == -1) {// FF
String enableFileName = "=?UTF-8?B?" + (new String(Base64.encodeBase64(fileName.getBytes("UTF-8")))) + "?="; ...
struts2 下载 取消 异常
- 博客分类:
- struts2
下载文件时,再弹出下载对话框时,如果用记点击“取消”,有时会报异常
解决方案:
把下载action对应的方法返回类型改成void,不用String
<action name="fileDownload" class="repTemplateALO" method="fileDownload" > <result name="success" type="stream"> <param name="encode">true</param> <param name="co ...
#模块日志loggerlog4j.logger.org.springframework.jdbc.core=DEBUG
log4j配置参见http://wzwd111.iteye.com/admin/blogs/654539
<script language="javascript" type="text/javascript" src="./js/DatePicker/WdatePicker.js"></script>
<input id="txtPublishfrom" type="text" readonly="readonly"/>
<img onclick="WdatePicker({el:$dp.$('txtPublishfro ...
系统 1级菜单点击没样式
表 建错了
权限设计问题
toad 乱码
用户和员工表怎么关联而且用户表是rolecode,员工表是roleid
php 项目根路径
$root = "http://".$_SERVER['HTTP_HOST']."/".substr($_SERVER['PHP_SELF'], 1, strpos(substr($_SERVER['PHP_SELF'], 1), "/"));
date_format(v.entrydate,'%m')
date_format(v.entrydate,'%d')
/**
* @param s money
* @return 千分符money
*/
function parseMoney(s){
if(/[^0-9\.]/.test(s)) return "invalid value";
s=s.replace(/^(\d*)$/,"$1.");
s=(s+"00").replace(/(\d*\.\d\d)\d*/,"$1");
s=s.replace(".",",");
var re=/(\d)(\d ...
package org.charwer.framework.util;
import java.math.BigDecimal;
import java.text.DecimalFormat;
public class NumberUtils{ /** *转换方法 * ",###,###.00" * */ public static String parseMoney(String pattern,BigDecimal bd){ return new DecimalFormat(pattern).format(bd); } public static Str ...