第一种方法:跳转到当前页:location.href为跳转当前的页面第二种方法:window.open为打开新窗口跳转跳转到新页面:
分类:
其他好文 时间:
2014-04-30 01:56:00
阅读次数:
497
package org.apache.struts2.dispatcher;import
com.opensymphony.xwork2.ActionInvocation;import
com.opensymphony.xwork2.Result;import com.opensymphony.xw...
分类:
其他好文 时间:
2014-04-29 18:55:17
阅读次数:
415
1 public static String makeMD5(String password) { 2
String result = null; 3 4 MessageDigest messageDigest; 5 try { 6 ...
分类:
其他好文 时间:
2014-04-29 10:16:46
阅读次数:
348
1,创建主窗体 在内存中实例化JFrame对象
通过使用setSize(),setBounds()或者pack()方法给JFrame设置大小
通过使用setTitle()设置标题,setDefaultCloseOperation()设置关闭策略,setLocationRelativeTo()设...
分类:
其他好文 时间:
2014-04-28 11:16:39
阅读次数:
486
这道题也很简单,只要把二叉树按照宽度优先的策略遍历一遍,就可以解决问题,采用递归方法越是简单。下面是AC代码:
1 /** 2 * Sum Root to Leaf Numbers 3 * 采用递归的方法,宽度遍历 4 */ 5 int result=0; 6...
分类:
其他好文 时间:
2014-04-28 10:05:40
阅读次数:
682
Traveling salesmen ofnhn. (the prestigious
Korean internet company) report their current location to the company on a
regular basis. They also have to...
分类:
其他好文 时间:
2014-04-28 01:25:55
阅读次数:
582
这是一篇分享技巧的文章:使用myeclipse关联帮助文档
① 选中spring.jar
② 鼠标右击,选择properties,弹出框中选择Javadoc Location,找到对应的文档位置,OK
③ 选择spring.jar中的类
④ 按住F1,弹出一个help框,选择Java help:Javadoc for ‘xxx’...
分类:
编程语言 时间:
2014-04-27 20:13:34
阅读次数:
569
这是一篇分享技巧的文章:myeclipse中配置spring xml自动提示。
① window -> preferences -> MyEclipse -> Files and Editors -> XML -> XML Catalog
② 选择User Specified Entries,点击add按钮弹出一个选框,填入以下三项
i. Location: D:\baidu...
分类:
编程语言 时间:
2014-04-27 17:49:51
阅读次数:
667