`
let_wind
  • 浏览: 6343 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
<%@page contentType="text/html; charset=UTF-8" %> <%@taglib prefix="s" uri="/struts-tags"%> <%@taglib prefix="display" uri="display-tag"%> <html> <body> <s:form action="/list.action" method="post& ...
<%@ page contentType="text/html;charset=utf-8"%> <%@ page isErrorPage="true"%> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8" /> <title>Error report</title> </head> &l ...
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx= ...
package org.swj.site.util; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.util.ArrayList; import java.util.List; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFSheet ...
package org.swj.site.dao; import java.io.File; import java.sql.SQLException; import java.util.List; import org.springframework.orm.ibatis.SqlMapClientCallback; import org.springframework.orm.ibatis.support.SqlMapClientDaoSupport; import org.swj.site.domain.Staff; import org.swj.site.util ...
package org.swj.site.util; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import org.apache.poi.xssf.usermodel.XSSFRow; import org.apache.poi.xssf.usermodel.XSSFSheet; import org.apache.poi.xssf.usermodel.XSSFWorkbook; ...
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx=&q ...
<?xml version="1.0" encoding="UTF-8"?> <web-app id="WebApp_ID" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee htt ...
判断输入的密码必须有8-30位,必须由字母,数字,和   !,   @,   #,   $,   %,   ^,   &,   *,   ~等特殊符号组成,而且密码字符串里不能出现我用户名的字符串! 我是这样写的:String   regEx   =   "^(([a-zA-Z]) ¦([0-9]) ¦([!@#$%^&*~])){8,30}$"; 但是不能够满足要求!
Global site tag (gtag.js) - Google Analytics