- 博客(14)
- 资源 (3)
- 收藏
- 关注
原创 java 生成二维码返回base64图片码有换行符的问题
之前用sun.misc.BASE64Encoder这个包会存在这个问题,上网查了下说是每隔72个字符就会加上换行符,果断换了一个包就可以解决了换成org.apache.commons.codec.binary.Base64用里面的byte[] d = Base64.encodeBase64(data)方法
2017-01-05 12:11:15 3447
转载 struts2 跳转类型 result type=chain、dispatcher、redirect(redirect-action)
struts2 跳转类型 result type=chain、dispatcher、redirect(redirect-action)dispatcher 为默认跳转类型,用于返回一个视图资源(如:jsp) Xml代码 :/main.jsp /main.jsp 以上写法使用了两个默认,其完整的写法为: /maini.jsp
2014-05-08 15:59:06 805
转载 启动tomcat 都报 java.lang.OutOfMemoryError: PermGen space
java.lang.OutOfMemoryError:PermGen space 错误,经过查资料得出以下解决办法。在eclipse中的window---preferences---servers---tomcat ---tomcat 6.x ---JDK—Optional Java VM arguments:下输入:-Xms256m -Xmx256m -XX:MaxNewSize=2
2014-05-06 17:05:20 506
原创 js 实现input框自动获取系统时间
" name="c.updateTime" class="w99" id="date" type="hidden" onClick="getDate(this);"/>
2014-05-05 16:49:56 2250
转载 JAVA格式化时间日期
import java.util.Date;import java.text.DateFormat;/*** 格式化时间类* DateFormat.FULL = 0* DateFormat.DEFAULT = 2* DateFormat.LONG = 1* DateFormat.MEDIUM = 2* DateFormat.SHORT = 3* @aut
2014-05-05 11:58:31 682
转载 javaScript系列:js中获取时间new Date()详细介绍
var myDate = new Date();myDate.getYear(); //获取当前年份(2位)myDate.getFullYear(); //获取完整的年份(4位,1970-????)myDate.getMonth(); //获取当前月份(0-11,0代表1月)myDate.getDate(); //获取当前日(1-31)myDate.getDay(); //获取
2014-05-05 11:57:00 644
原创 No result defined for action and result input
No result defined for action and result input相信很多人一开始接触ssh都会遇到的
2014-04-27 13:06:06 667
原创 from表单多个按钮提交,跳转不同action
《scfunction manySend(href){var form = document.form1;form.action = href;form.submit();}
2014-04-23 17:26:08 2326
原创 解决网页异步上传图片时不断更换预览图片时数据库累积文件问题与ajaxUploadFile上传多个参数问题
/*******************************jsp部分*****************************************/ input name="photo" id="photo" type="file" class="input_file" onchange="ajaxPreImage()"> input type="hidden" id="oldPhoto
2014-04-17 12:22:21 961
原创 string类型转换为json对象保存
public void savePolling() throws JsonGenerationException, JsonMappingException, IOException {//repj = new ResponseEquipmentPollingJson();if(StringUtils.isNotEmpty(repJson)){ObjectMapper mapper =
2014-04-17 11:54:17 1882
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人