摘要: http://blog.163.com/liwangyang19880814@126/blog/static/19733528201291082432202http://blog.csdn.net/huahuahailang/article/details/12223753http://blog.csdn.net/g_little_boy/article/details/6483961http://blog.csdn.net/huyfaeng/article/details/6868594http://www.cnblogs.com/sooner/p/3252439.html 阅读全文
posted @ 2014-03-07 12:33 Avrilliu 阅读(102) 评论(0) 推荐(0) 编辑
摘要: 1 ajax主要是实现了网页的部分区域刷新异步请求的功能,比如前面说的登录如果用ajax来做,那就不用从login.jsp跳转到index.jsp了,仅仅是将登陆窗口隐藏掉换成了主界面内容,给用户更好的体验效果。2 ajax主要是客户端js技术而struts是服务端技术所以可以并用,网页上发送ajax的异步请求到struts的action里面获取数据后返回给界面,更新界面的某部分信息。http://www.iteye.com/problems/16616 阅读全文
posted @ 2014-03-04 15:50 Avrilliu 阅读(191) 评论(0) 推荐(0) 编辑
摘要: ORACLE DUAL表详解 (转)http://hi.baidu.com/pythonshow/item/76f76e04f3e2d612cc34eab0 阅读全文
posted @ 2013-12-04 18:35 Avrilliu 阅读(159) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/abandonship/article/details/7105157Error: 1175 SQLSTATE: HY000 (ER_UPDATE_WITHOUT_KEY_IN_SAFE_MODE)Message: You are using safe update mode and you tried to update a table without a WHERE that uses a KEY column.Solution:SETSQL_SAFE_UPDATES= 0;update T set col = 'xxx' wher 阅读全文
posted @ 2013-11-16 17:27 Avrilliu 阅读(522) 评论(0) 推荐(0) 编辑
摘要: eclipse版本与jre版本不一致的解决方法http://blog.sina.com.cn/s/blog_62ef2f1401014jx4.htmljre1.6下载地址http://www.oracle.com/technetwork/java/javase/downloads/jre6-downloads-1637595.html 阅读全文
posted @ 2013-11-15 22:36 Avrilliu 阅读(720) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/njchenyi/article/details/6042760 阅读全文
posted @ 2013-10-11 16:55 Avrilliu 阅读(117) 评论(0) 推荐(0) 编辑
摘要: http://www.jb51.net/article/29893.htm语法:JSON.stringify(value [, replacer] [, space])value:是必须要的字段。就是你输入的对象,比如数组啊,类啊等等。replacer:这个是可选的。它又分为2种方式,一种是方法,第二种是数组。情况一:我们先说数据,通过我们后面的实验可以知道,它是和第一个有关系的。一般来说,我们系列化后的结果是通过键值对来进行表示的。比如说:name:"lan",age:25这种形式。所以,如果这种形式的话,如果第二个的值在第一个存在,那么的话就以第二个的值做key,第一个 阅读全文
posted @ 2013-08-22 22:16 Avrilliu 阅读(671) 评论(0) 推荐(0) 编辑
摘要: 在项目中引入struts21.创建web项目 2.引入struts2类库 ${struts解压目录}/app/struts2-blank-2.1.8.1.war/web-inf/lib/*.jar 3.创建action. package cn.itcast.struts2.action/*** HelloWorldAction*/ public class HelloWorldAction { public String execute(){ System.out.println("hello world"); return null ... 阅读全文
posted @ 2013-08-05 13:58 Avrilliu 阅读(352) 评论(0) 推荐(0) 编辑
摘要: 1.struts2是struts1和webwork的合体2.struts1:基于servlet 1)ActionServlet作用: (1)接受请求->寻找frombean>实例化formbean>实例化后组装进来>判断是否需要校验>如果需要校验再调用ActionForm的校验方法,返回值是AcctionErrors类型,返回给ActionServlet>判断返回的AcctionErrors有效性,如果有效存到request域中>再跳转到input页面(/xxx.jsp) (2)到Action页面>负责Action实例化>再把Action返 阅读全文
posted @ 2013-08-05 13:16 Avrilliu 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 为了使用私有方法:getPackageSizeInfoMethod method = PackageManager.class.getMethod("getPackageSizeInfo", new Class[]{String.class,public class DemoActivity extends Activity { private PackageManager pm; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedIn.. 阅读全文
posted @ 2013-07-29 17:50 Avrilliu 阅读(2007) 评论(0) 推荐(0) 编辑