(1)Struts: 1) 和 都可以实现向前转发的作用,并且路径可以为在tiles-defs.xml里定义的.view.my.bb,也可以是真实路径。(1)JSP中的Form: 1) href中和action里添的路径是不一样的: html:form里不是不用加/bgx,而是执行后会自动加上/bgx,其他地方是要必须加全的,如普通form标签
ActionForward myActionForward = new ActionForward( " /my/subscriptionStatus.do?method=execute1 " ); // 这个里不用写/bgx return myActionForward;
或
ActionForward myActionForward = new ActionForward( " /jsp/ABC.jsp " ); // 路径中的/jsp前面不加/bgx。 return myActionForward;
form中的 等标签,不一定要有一个form类,可以在Action类中用 String AA= request.getParameter("AA");得到其值。 2) 以上action中也能用?传参数。传参时等号后面不要有空格,否则会把空格也当成要传的参数。 3) 以上styleId用于标识这个form。如果这个form上传文件则要加enctype属性。 4) 当form中含有文本框等时,要验证文本框的内容时,最好如
~~ ,否则Struts不会自动的给你加上
,Token也就不会起作用,如果非要用后者,那么可手动在jsp文件中加入:
此时要在jsp文件头加入:
<%@ page import="org.apache.struts.Globals"%>,如果不加入这个import则要将Globals.TRANSACTION_TOKEN_KEY换成"org.apache.struts.action.TOKEN",但不知道为什么这样${org.apache.struts.action.TOKEN}却得不到Token值。
isTokenValid(request);为true的时候要记得调用resetToken(request);用来在session范围内删除Token属性。
6) 正则表达式:
1)在java中:
如果想用正则表达式查?可以[?]。
import java.util.regex.Matcher; import java.util.regex.Pattern; //以下代码的功能是 判断是否为小数。 //在Java中用正则表达式时,“.”表示除\n之外的任何一个字符,如果想用“.”这个字符,则在Java中不能用“\.”得到,要用“[.]”。 Pattern myPattern = Pattern.compile( " [0-9]*[.]?[0-9]* " ); Matcher myMatcher = pattern.matcher( " 12.3 " ); myMatcher.matches();
2)如在JavaScript中: var re = new RegExp("^[0-9]{1, }$"); re.test("abc123"); 以上正则表达式的功能就是判断"abc123"中是否包含数字。 如果是“不能是"abc"”,而不是“不能包含"abc"”,则构造正则表达式为"^abc$"。 7)
errors.add( " errors.upfile.tooBig1 " , new ActionMessage( " errors.upfile.tooBig2 " , formFiles.get(i).getFileName())); // errors.upfile.tooBig1是在JSP文件中使用的代号,errors.upfile.tooBig2是资源文件中的代号, formFiles.get(i).getFileName()是用于替代errors.upfile.tooBig2中的{0}。
8) 查询某个月份内的记录数:
// 第一种方法,查出的结果准确。 SimpleDateFormat simpleDateFormatForCurrentMonth = new SimpleDateFormat( " yyyy-MM " ); String currentMonthYear = simpleDateFormatForCurrentMonth.format( new Date()); GregorianCalendar gc = new GregorianCalendar(); gc.add(GregorianCalendar.MONTH, 1 ); Date d = new Date(gc.getTimeInMillis()); String nextMonthYear = simpleDateFormatForCurrentMonth.format(d); String hql4 = " select count(*) from Bid obj where obj.bidTime >= ' " + currentMonthYear + " -01' and obj.bidTime < ' " + nextMonthYear + " -01' " ; Query myQuery4 = myHibernateSession.createQuery(hql4); myQuery4.uniqueResult();
// 第二种方法,查出的结果不准确,有时候虽然数据库有记录,但查不到。 SimpleDateFormat simpleDateFormatForCurrentMonth = new SimpleDateFormat( " MMM % yyyy % " ); String currentMonthYear = simpleDateFormatForCurrentMonth.format( new Date()); String hql4 = " select count(*) from Bid obj where obj.bidTime like ' " + currentMonthYear + " ' " ; Query myQuery4 = myHibernateSession.createQuery(hql4); myQuery4.uniqueResult();
9)
// 在JSP文件中导入多个类的方法。 <% @ page import = " java.util.List, com.bestguanxi.valueobjects.or.Category " %> // 或 <% @ page import = " java.util.List " import = " com.bestguanxi.valueobjects.or.Category " %>
10)
// 在JSP文件中4个一换行的方法。 < logic:notEmpty name = " AA " > < logic:iterate id = " aa " name = " AA " indexId = " myIndex " > <% if ( 0 == myIndex.intValue() % 4 ) out.println( " " #FFCCFF\ "" ); %> < td > Test td > logic:iterate > logic:notEmpty >
11)
// 两种方法获得indexId的值。 < logic:notEmpty name = " AA " > < logic:iterate id = " aa " name = " AA " indexId = " myIndex " > <% int i1 = myIndex.intValue(); int i2 = ((Integer)pageContext.getAttribute( " myIndex " )).intValue(); %> logic:iterate > logic:notEmpty > // indexId是从0开始的。
12)
// 在Java中用for遍历每个对象的方法。 for (Showcase aShowcaseObj : allShowcaseObj) { aShowcaseObj.getShowInMedialoop(); }
13)
// To the website's path String websitePath = " https:// " + request.getLocalAddr() + " : " + request.getLocalPort();
14) 读xml的方法: 在.xml文件中:
xml version="1.0" encoding="UTF-8" ?> < sysinfo > < website > website > < weburl > weburl > < cookiepath > / cookiepath > < profile > < general > user/{0}/profile/ general > < sample > user/{0}/profile/sample/ sample > < certificate > user/{0}/profile/certificate/ certificate > profile > < mailpicpath > d:/bgx/upload/mail/ mailpicpath > sysinfo >
在.java文件中:
Log logger = LogFactory.getLog(SysInfo. class ); // Read xml file information method SAXBuilder sb = new SAXBuilder(); InputStream in = null ; try { in = this .getClass().getResourceAsStream( " /com/bestguanxi/resource/bgx.xml " ); Document doc = sb.build(in); Element root = doc.getRootElement(); this .cookiepath = root.getChild( " cookiepath " ).getTextTrim(); Element profileEl = root.getChild( " profile " ); this .cfPath = profileEl.getChildText( " certificate " ); this .mailPicPath = root.getChildTextTrim( " mailpicpath " ); } catch (Exception e) { logger.error(e); } finally { try { in.close(); } catch (IOException e) { } }
(10)Hibernate: 1) 如果对象的属性是字符类型,那么等号后要加单引号"from Project obj where obj.name = '" + para + "'"; 从数据库中查询的字符类型的数据,得到的是带单引号的东西。 2) 双主键就是两个键做一个主键。可以按住Shift选两行之后用Set Primary Key设置双主键。 3) 表中的几“列”想作为一列时,可以将这几列的标题名作为另一张表的几“行”,让后将新表做为第一个表的一“列”的内容就可以了。 4) HQL的两种更新方法:
Session myHibernateSession = HibernateSessionFactory.currentSession(); Transaction myTransaction = myHibernateSession.beginTransaction(); String hql = " update Profile obj set obj.name = 'mm' where obj.profileId = 1 and obj.category.categoryId = 2 " ; Query myQuery = myHibernateSession.createQuery(hql); myQuery.executeUpdate(); myTransaction.commit();
和
Session myHibernateSession = HibernateSessionFactory.currentSession(); Transaction myTransaction = myHibernateSession.beginTransaction(); String hql = " from Profile obj where obj.profileId = 1 and obj.category.categoryId = 2 " ; Query myQuery = myHibernateSession.createQuery(hql); Profile aProfile = (Profile)myQuery.uniqueResult(); aProfile.setLevel(myObject1); aProfile.setSubscriptionLength(myObject2); myHibernateSession.save(aProfile); myTransaction.commit();
的区别是前者不能直接更新对象,而后者可以。 5) SQL Server2005写存储过程的语法(类似VB): 字符串用''。 int等没赋值时是null,判断是null用is,不是用is not。 判断等不等于数值用=而不是==。 对于数值<>表示不等于,即或者大于或者小于但就是不等于。 or表示或。 6) 多个like的or查询的写法: select * from Discuss where providerList like '2,%' or providerList like '%,2' or providerList like '%,2,%' 其中"%"表示“0到多个任意字符”。 如果想查询不多不少正好是2,则用'2'。(11)制作网站时,在IE和其他浏览器中代码不同的比较: 1) 在Javascript中: IE--------------------------Firefox-----------------Netscape document.forms["postProfile2Form"];或document.getElementById("postProfile2Form");-----------------document.forms["postProfile2Form"];
JS的IE和Firefox兼容性汇编(原作:hotman_x)- - 以下以 IE 代替 Internet Explorer,以 MF 代替 Mozzila Firefox 1. document.form.item 问题 (1)现有问题: 现有代码中存在许多 document.formName.item("itemName") 这样的语句,不能在 MF 下运行 (2)解决方法: 改用 document.formName.elements["elementName"] (3)其它 参见 2 2. 集合类对象问题 (1)现有问题: 现有代码中许多集合类对象取用时使用 (),IE 能接受,MF 不能。 (2)解决方法: 改用 [] 作为下标运算。如:document.forms("formName") 改为 document.forms["formName"]。 又如:document.getElementsByName("inputName")(1) 改为 document.getElementsByName("inputName")[1] (3)其它 3. window.event (1)现有问题: 使用 window.event 无法在 MF 上运行 (2)解决方法: MF 的 event 只能在事件发生的现场使用,此问题暂无法解决。可以这样变通: 原代码(可在IE中运行): ... 新代码(可在IE和MF中运行): ... 此外,如果新代码中第一行不改,与老代码一样的话(即 gotoSubmit 调用没有给参数),则仍然只能在IE中运行,但不会出错。所以,这种方案 tpl 部分仍与老代码兼容。 4. HTML 对象的 id 作为对象名的问题 (1)现有问题 在 IE 中,HTML 对象的 ID 可以作为 document 的下属对象变量名直接使用。在 MF 中不能。 (2)解决方法 用 getElementById("idName") 代替 idName 作为对象变量使用。 5. 用idName字符串取得对象的问题 (1)现有问题 在IE中,利用 eval(idName) 可以取得 id 为 idName 的 HTML 对象,在MF 中不能。 (2)解决方法 用 getElementById(idName) 代替 eval(idName)。 6. 变量名与某 HTML 对象 id 相同的问题 (1)现有问题 在 MF 中,因为对象 id 不作为 HTML 对象的名称,所以可以使用与 HTML 对象 id 相同的变量名,IE 中不能。 (2)解决方法 在声明变量时,一律加上 var ,以避免歧义,这样在 IE 中亦可正常运行。 此外,最好不要取与 HTML 对象 id 相同的变量名,以减少错误。 (3)其它 参见 问题4 7. event.x 与 event.y 问题 (1)现有问题 在IE 中,event 对象有 x, y 属性,MF中没有。 (2)解决方法 在MF中,与event.x 等效的是 event.pageX。但event.pageX IE中没有。 故采用 event.clientX 代替 event.x。在IE 中也有这个变量。 event.clientX 与 event.pageX 有微妙的差别(当整个页面有滚动条的时候),不过大多数时候是等效的。 如果要完全一样,可以稍麻烦些: mX = event.x ? event.x : event.pageX; 然后用 mX 代替 event.x (3)其它 event.layerX 在 IE 与 MF 中都有,具体意义有无差别尚未试验。 8. 关于frame (1)现有问题 在 IE中 可以用window.testFrame取得该frame,mf中不行 (2)解决方法 在frame的使用方面mf和ie的最主要的区别是: 如果在frame标签中书写了以下属性: 那么ie可以通过id或者name访问这个frame对应的window对象 而mf只可以通过name来访问这个frame对应的window对象 例如如果上述frame标签写在最上层的window里面的htm里面,那么可以这样访问 ie: window.top.frameId或者window.top.frameName来访问这个window对象 mf: 只能这样window.top.frameName来访问这个window对象 另外,在mf和ie中都可以使用window.top.document.getElementById("frameId")来访问frame标签 并且可以通过window.top.document.getElementById("testFrame").src = 'xx.htm'来切换frame的内容 也都可以通过window.top.frameName.location = 'xx.htm'来切换frame的内容 关于frame和window的描述可以参见bbs的‘window与frame’文章 以及/test/js/test_frame/目录下面的测试 ----adun 2004.12.09修改 9. 在mf中,自己定义的属性必须getAttribute()取得 10.在mf中没有 parentElement parement.children 而用 parentNode parentNode.childNodes childNodes的下标的含义在IE和MF中不同,MF使用DOM规范,childNodes中会插入空白文本节点。 一般可以通过node.getElementsByTagName()来回避这个问题。 当html中节点缺失时,IE和MF对parentNode的解释不同,例如
MF中input.parentNode的值为form, 而IE中input.parentNode的值为空节点 MF中节点没有removeNode方法,必须使用如下方法 node.parentNode.removeChild(node) 11.const 问题 (1)现有问题: 在 IE 中不能使用 const 关键字。如 const constVar = 32; 在IE中这是语法错误。 (2)解决方法: 不使用 const ,以 var 代替。 12. body 对象 MF的body在body标签没有被浏览器完全读入之前就存在,而IE则必须在body完全被读入之后才存在 13. url encoding 在js中如果书写url就直接写&不要写&例如var url = 'xx.jsp?objectName=xx&objectEvent=xxx'; frm.action = url那么很有可能url不会被正常显示以至于参数没有正确的传到服务器 一般会服务器报错参数没有找到 当然如果是在tpl中例外,因为tpl中符合xml规范,要求&书写为& 一般MF无法识别js中的& 14. nodeName 和 tagName 问题 (1)现有问题: 在MF中,所有节点均有 nodeName 值,但 textNode 没有 tagName 值。在 IE 中,nodeName 的使用好象 有问题(具体情况没有测试,但我的IE已经死了好几次)。 (2)解决方法: 使用 tagName,但应检测其是否为空。 15. 元素属性 IE下 input.type属性为只读,但是MF下可以修改 16. document.getElementsByName() 和 document.all[name] 的问题 (1)现有问题: 在 IE 中,getElementsByName()、document.all[name] 均不能用来取得 div 元素(是否还有其它不能取的元素还不知道)。
阅读(1351) | 评论(0) | 转发(0) |