`
文章列表
public static void main(String[] args){ try { //获取当前日期 Date date = new Date(); SimpleDateFormat sf = new SimpleDateFormat("yyyyMMdd"); String nowDate = sf.format(date); System.out.println(nowDate); //通过日历获取下一天日期 Calendar cal = Calendar.getInstance(); cal ...
Ext.grid.PivotGrid样式 <style type="text/css"> table {border-collapse:collapse;} .font_style { font-family: "宋体"; font-size: 12px; } /*! * 报表左侧 */ .tjbb-left { background: url("../images/default/grid/grid3-rowheader. ...
作者:silence1214 来源:http://blog.csdn.net/silence1214/article/details/6976673 store load()和reload() load( Object options ) : Boolean 采用配置好的Reader格式去加载Record缓存,具体请求的任务由配置好的Proxy对象完成。 reload( Object options ) 依据上一次的load操作的参数的Reader制订的格式,再一次向Proxy对象要求施以加载(Reload)Record缓存的操作。 load重新提交新的参数请求数据 reload提交用 ...
作者:hyddd 出处:http://www.cnblogs.com/hyddd/ 下图清楚地描述了Oracle Database Administrator的身份验证模式。 Oracle的验证模式有2种: (1).Os Authentication:通过登陆操作系统的账号验证身份。 (2).Password Authentication:通过与Password file中的账号做匹对来验证身份。 从上图可以知道,我们有5种方式调用上面2种验证模式: 1.验证方式1 所谓“Local”包括两种情况: (1).你直接登陆本机的Linux(界面/命令行)。 (2).你用putty ...
一、OracleServiceORCL:数据库的主服务,此服务的必须启动才能使用Oracle。此服务的命名规则是OracleService+全局数据库名称 二、OracleOraDb10g_home1TNSListener:Orace监听服务,如果有客户端需要连接到数据库,此服务必须打开。 三、OracleOraDb10g_home1iSQL*Plus:Oracle iSQL*Plus服务,只有在Web页面中使用iSQL*Plus时候才需要启动。 四、OracleJobSchedulerORCL:定时器的服务进程。 五、OracleDBConsoleorcl:oracle数据库控制台 ...
[root@test /]# more /etc/rc.d/rc.local /opt/WebSphere/DeploymentManager/bin/startManager.sh /opt/WebSphere/AppServer/bin/startNode.sh /opt/WebSphere/Appserver/bin/startServer.sh server1 /opt/IBMHttpServer/bin/apachectl start

Extjs Anchor布局

1.百分比(Percentage)定位 图1 Ext.onReady(function() { var panel_1 = new Ext.Panel({ title:'panel_1', anchor:'60% 50%', html:'<span style="font-size: 12px">(anchor:宽 高)'+ '</br>(anchor:60% 50%)'+ '</br>宽度=容器宽度*60%'+ '</br>高度=容器高度*50%'+ ...

Extjs Tree

Ext.QuickTips.init(); var root = new Ext.tree.AsyncTreeNode({ text : '我是根', expanded : true, children : [{ text : '关注人员管理', qtip : '关注人员', // 必须通过Ext.QuickTips.init();初始化 children : [{ text : '方案管理', qtip : '方案管理', leaf : true, ...
/** * 转换日期格式 * * @param dateStr * @return * @throws Exception */ public static String formateDate(String dateStr) { String str = dateStr; try { if (dateStr.length() == 14) { Date date = new SimpleDateFormat("yyyyMMddHHmmss").parse(dateStr); str = new SimpleDateForma ...
oracle里面null是未知的是不能用<>、!=等这样的表达式 如下图 执行第一行sql语句产生的结果集 字段YWDX字段里面有6行是03的记录,我想去掉是03的6条记录,写了第二行sql,但是返回的结果集是空的,没有任何记录 网上查询其原因 oracle里面null是未知的是不能用<>、!=等这样的表达式

Extjs 常用Combo组件

//数据源本地,下拉列表不分页 var status_store = new Ext.data.JsonStore({ autoLoad : true, fields:['id', 'text' ], data: [ {id:'1', text: '已审批'}, {id:'2', text: '未审批'}, {id:'3', text: '未通过'} ] }); var status_combo = new Ext.form.C ...
//Extjs 引用 var rq_formPanel = new Ext.FormPanel({ border : false, hideLabel : true, autoWidth : true, height : 26, labelWidth : 35, style : { padding : '4 0 0 10'// 上 右 下 左 }, items : [{ xtype : 'datefield',// 日期控件 width : 145, validateOnBlur : true, fieldLabel : '月份 ...
<select name="select2" onchange="if (this.options[this.selectedIndex].value!=''){window.open(this.options[this.selectedIndex].value);}"> <option> === 外省市站点 === </option> <option value="http://www.baidu.com"> 百度 </option> < ...
<c:forEach var="zcdChildren" items="${zcdChildrenList}" varStatus="status"> <c:forEach var="zcd" items="${zcdChildren}" varStatus="zcdChildStatus"> <a href="a.action?linkid=${zcd.id}" target="${zcd.href ...
今天早上一上班用SSH登陆Linux服务器,出现无法登陆,提示 failed to open a secure file transfer session 网上查找原因后解决。 原文网址:http://blog.csdn.net/zhangtuo/article/details/5314255 vi /etc/ssh/sshd_config    shift+G跳转到文件尾 Subsystem sftp /usr/lib64/ssh/sftp-server  #发现这里的路径不对 /usr/lib64/目录下没有ssh目录 Subsystem sftp /usr/libexec/opens ...
Global site tag (gtag.js) - Google Analytics