posted @ 2016-08-30 19:14
08 2016 档案
摘要:如何将我们网站的其它内容(如菜单、标题等)做国际化处理呢?这就是本篇要将的内容—>国际化。 在项目的spring.xml文件添加的内容如下 在项目中的源文件夹resources中添加myproperties.properties、myproperties_zh_.properties、myprope
阅读全文
摘要:禁用鼠标右键菜单栏 禁用快捷键
阅读全文
posted @ 2016-08-30 19:02
摘要:其他链接:http://blog.csdn.net/jinwufeiyang/article/details/52338268 如何将我们网站的其它内容(如菜单、标题等)做国际化处理呢?这就是本篇要将的内容—>国际化。 在项目的spring.xml文件添加的内容如下 [html] view plai
阅读全文
posted @ 2016-08-28 10:41
摘要:1.jsp页面内容显示乱码 这种乱码原因很简单,一般的工具或解码程序对中文字符解析时采用默认的解码方式: <%@ page contentType="text/html; charset=ISO-8859-1"%> <%@ page contentType="text/html; charset=I
阅读全文
posted @ 2016-08-13 21:59
摘要:FileItem类的常用方法: 1. boolean isFormField() isFormField方法用于判断FileItem类对象封装的数据是一个普通文本表单字段,还是一个文件表单字段,如果是普通表单字段则返回true,否则返回false。因此,可以使用该方法判断是否为普通表单域,还是文件上
阅读全文
posted @ 2016-08-12 00:10
摘要:spring mvc(注解)上传文件的简单例子,这有几个需要注意的地方1.form的enctype=”multipart/form-data” 这个是上传文件必须的2.applicationContext.xml中 <bean id=”multipartResolver” class=”org.sp
阅读全文
posted @ 2016-08-11 23:58