摘要: 转自:http://www.cnblogs.com/wufengxyz/archive/2011/12/04/2275489.html前言:为了防止用户恶意,或者使用软件外挂提交一些内容,就得用验证码来阻止,虽然这个会影响用户体验,但为了避免一些问题很多网站都使用了验证码;今天下午参 考文档弄了一个验证码,这里分享一下;这是一个web工程,首先是页面,这里只是一个显示验证码页面index.jsp,使用默认生成的就可以了,表单没 有做提交,如下:<%@ page language="java" import="java.util.*" pageEnc 阅读全文
posted @ 2013-01-27 01:17 horizon~~~ 阅读(307) 评论(0) 推荐(0) 编辑
摘要: @RequestMapping(value = "/reportTemplate/{id}/content", method = RequestMethod.GET)public ResponseEntity<byte[]> downloadReportTemplateContent( @PathVariable("id") final ReportTemplate reportTemplate) throws IOException { ReportDatei file = reportTemplate.getFile(); String 阅读全文
posted @ 2013-01-27 00:49 horizon~~~ 阅读(3102) 评论(1) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/huang_hws/article/details/6689111当然前提是已经设置好了spring mvc的配置。上传:前台:<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%><!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://w 阅读全文
posted @ 2013-01-27 00:14 horizon~~~ 阅读(4109) 评论(0) 推荐(1) 编辑