摘要: http://www.eclipse.org/downloads/ 阅读全文
posted @ 2013-12-05 15:22 微明Axel 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 创建数据表空间create tablespace stbss datafile 'E:\oracle\product\10.2.0\oradata\orcl\stbss_temp01.dbf' size 100m autoextend on next 32m maxsize 2048m ---------------------------------stbss 是表空间名称D:xxxxx.dbf 是你表空间数据的存放地址和文件名称size 100m 开始是100M的大小autoextend on next 32m 不够的话会自动增长32Mmaxsize 2048m... 阅读全文
posted @ 2013-12-05 15:16 微明Axel 阅读(226) 评论(0) 推荐(0) 编辑
摘要: window --> Perferences--> General--> keysContent Assist默认的是Ctrl +spaceContent Assist快捷键设置成Alt + /有一个选项已经用到了Alt + /,搜索Alt + /将其改为Alt + P 阅读全文
posted @ 2013-11-12 13:40 微明Axel 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 转自:http://zz563143188.iteye.com/blog/1877266企业级项目实战地址:http://zz563143188.iteye.com/blog/1825168开发资料:http://pan.baidu.com/share/link?shareid=3739316113&uk=4076915866#dir/path=%2Fstudy 阅读全文
posted @ 2013-10-30 14:03 微明Axel 阅读(251) 评论(0) 推荐(0) 编辑
摘要: http://www.miniui.com/http://www.miniui.com/demo/ 阅读全文
posted @ 2013-10-25 16:55 微明Axel 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 1.把C++当成一门新的语言学习(和C没啥关系!真的。);2.看《ThinkingInC++》,不要看《C++变成死相》;3.看《TheC++ProgrammingLanguage》和《InsideTheC++ObjectModel》,不要因为他们很难而我们自己是初学者所以就不看;4.不要被VC、BCB、BC、MC、TC等词汇所迷惑——他们都是集成开发环境,而我们要学的是一门语言;5.不要放过任何一个看上去很简单的小编程问题——他们往往并不那么简单,或者可以引伸出很多知识点;6.会用VisualC++,并不说明你会C++;7.学class并不难,template、STL、genericprog 阅读全文
posted @ 2013-10-25 14:53 微明Axel 阅读(156) 评论(0) 推荐(0) 编辑
摘要: C:\Users\Administrator\AppData\Roaming\Microsoft\Windows\Start Menu\Programs 阅读全文
posted @ 2013-04-25 23:24 微明Axel 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 在struts1.x Action类的execute方法中,有四个参数,其中两个就是response和request。而在Struts2中,并没有任何参数,因此,就不能简单地从execute方法获得HttpServletResponse或HttpServletRequest对象了。但在Struts2 Action类中仍然有很多方法可以获得这些对象。下面就列出四种获得这些对象的方法。【方法1】使用Struts2 Aware拦截器这种方法需要Action类实现相应的拦截器接口。如我们要获得HttpServletResponse对象,需要实现org.apache.struts2.intercepto 阅读全文
posted @ 2013-04-15 08:25 微明Axel 阅读(201) 评论(0) 推荐(0) 编辑
摘要: Servlet:当然,在servlet中,一般跳转都发生在doGet, doPost等方法里面。1) redirect 方式response.sendRedirect("/a.jsp");页面的路径是相对路径。sendRedirect可以将页面跳转到任何页面,不一定局限于本web应用中,如:response.sendRedirect("http://www.baidu.com");跳转后浏览器地址栏变化。这种方式要传值出去的话,只能在url中带parameter或者放在session中,无法使用request.setAttribute来传递。2) for 阅读全文
posted @ 2013-04-15 08:24 微明Axel 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 用struts2中的<s:property value="datetime"/>显示时间的时候:如2011-08-08 而页面上显示:11-08-08,而数据库时间的格式却是xxxx-xx-xx 格式。因此用<s:date>标签的format格式化。1、<!-- 得到当前时间,格式为xxxx-xx-xx --> <s:set name="todayTime" value="new java.sql.Date(new java.util.Date().getTime()).toString()" 阅读全文
posted @ 2013-03-15 09:11 微明Axel 阅读(424) 评论(0) 推荐(0) 编辑