- 浏览: 102236 次
- 性别:
- 来自: 成都
最新评论
-
atian25:
引用因为每一列都写了renderer:thumbnail,显示 ...
grid 显示缩略图问题 -
IceWee:
呵呵 确实如此!谢谢楼主!
DWRUtil未定义解决
文章列表
oracle查询最近6个月记录
- 博客分类:
- 数据库查询
select * from customer c where TRUNC (TO_DATE(c.create_time,'yyyy-mm-dd hh24:mi:ss')) >
add_months(to_date('20130216','yyyy-mm-dd'),-6);
svn checkout https://powermock.googlecode.com/svn/tags/powermock-1.4.10/examples/tutorial powermock-tutorial
1.进入%java_home%/bin目录下
2.为服务器生成证书
keytool -genkey -alias tomcat -keyalg RSA -keystore D:\tomcat.keystore -validity 365
validity 365 表示有效期天数
3.为客户端生成证书
keytool -genkey -v -alias myKey -keyalg RSA -storetype PKCS12 -keystore d:\client.p12
4.让服务器信任客户端证书,导出客户端证书
keytool -export -alias myKey -keysto ...
提示:Activity not started, its current task has been brought to the front
运行内容为上一次运行的缓存....
解决方法:1.重启模拟器
2.project->clean
方法一:
select CONVERT(varchar, getdate(), 120 )
2004-09-12 11:06:08
select replace(replace(replace(CONVERT(varchar, getdate(), 120 ),\'-\',\'\'),\' \',\'\'),\':\',\'\')
20040912110608
select CONVERT(varchar(12) , getdate(), 111 )
2004/09/12
select CONVERT(varchar(12) , getdate( ...
准备:在安装插件之前,建议先安装Ruby、Rails以及MySQL。我选择的Ruby安装包是rubyinstaller for windows版本,可以在http://rubyinstaller.org/网站上下载。安装过程非常简单,直接按照向导提示即可(注意,在安装过程中,一定要选中Enable RubyGems选项,该选项默认为选中):
clip_image002
安装完成后,进入命令窗口,输入命令:ruby –v,如果能够显示ruby的版本,则说明安装成功(安装程序已经为ruby添加了系统路径)。
clip_image004
可以看到,我安装的ruby版本为1.8.6。接下来,应该 ...
eclipse.product=com.genuitec.myeclipse.product8.ide
osgi.splashPath=platform\:/base/plugins/com.genuit ec.myeclipse.product8
改为:
eclipse.product=com.genuitec.myeclipse.product85.ide
osgi.splashPath=platform\:/base/plugins/com.genuitec.myeclipse.product85
OK!!
前两天更新MyEclipse的SV ...
var geHandleOn = form.findField('filter_GE_handleOn')
.getValue();
var gedt = new Date(geHandleOn).format('Y-m-d');
环境:Windows XP + SqlServer2000 + MySQL 5.1.30
1. 新建ODBC数据源
http://dev.mysql.com/downloads/connector/odbc/3.51.html下载MySQL ODBC 3.51 Driver(我安装ODBC 5.1不能添加数据源,一到点击测试或者选择database的时候就死机),原因未知
2. 我的电脑--控制面板—管 ...
- 2009-10-27 21:36
- 浏览 3136
- 评论(0)
简介
从诞生之初,Spring框架就坚守它的宗旨:简化企业级应用开发,同时给复杂问题提供强大的、非侵入性解决方案。一年前发布的Spring2.0就把这些主题推到了一个新的高度。XML Schema的支持和自定义命名空间的使用大大减少了基于XML的配置。使用Java5及更新版本java的开发人员如今可以利用植入了像泛型(generic)和注解等新语言特性的Spring库。最近,和AspectJ表达式语言的紧密集成,使得以非侵入方式添加跨越定义良好的Spring管理对象分组的行为成为可能。
新发布的Spring2.5继续坚持了这个发展趋向,特别是为那些使用Java 5或更新版本java的开发人员 ...
- 2009-10-16 14:17
- 浏览 855
- 评论(0)
因为在安装盘下边误删mobile_base.dbf表空间所致
解决过程:
C:\Documents and Settings\Administrator>sqlplus /nolog
SQL> connect system/密码 as sysdba
已连接。
SQL> shutdown normal
ORA-01109: 数据库未打开
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup mount
ORACLE 例程已经启动。
Total System Global Area 612368384 bytes
Fi ...
- 2009-09-08 15:13
- 浏览 3747
- 评论(0)
import java.util.Arrays;
public class Test {
public static void main(String[] args) {
int[] a = { 1, 3, 5, 8, 77, 6, 0, 100, 84, 32, 9, 88, 99, 4, 7, 90 };
Arrays.sort(a);//数组排序方法
int length = a.length;
int n = a.length;
StringBuffer sb = new StringBuffer();
for (int i = 0; i ...
先转载一篇simon1118的关于ewebeditor在线编辑器jsp版一些使用心得http://www.iteye.com/topic/97537#326973
期间遇到几个问题:
1.提交content乱码 upload.js找到这句sContent=new String(request.getParameter("eWebEditor_UploadText").getBytes("iso8859-1")); 改成sContent=new String(request.getParameter("eWebEditor_UploadTe ...
- 2009-08-25 08:09
- 浏览 2598
- 评论(0)
function thumbnail (data, metadata, record, rowIndex, columnIndex, store){
var url = store.getAt(rowIndex).get('bannerUrl');
var fileName = store.getAt(rowIndex).get('fileName');
//qtitle标题 qtip:内容
var img = "<img src='"+url+"/"+fileName+ "' width='300 ...
张礼礤?上庭的“胡斌”就是替身
笔者在看到杭州飙车事件主犯胡斌被判处有期徒刑三年的消息之后,不仅仅对这种判决结果感到失望,而且对上庭受审的“胡斌”深表质疑,因为对比之前媒体所发布的胡斌照片,完全 ...
- 2009-07-27 20:08
- 浏览 2689
- 评论(0)