`
文章列表
var findParentWin = function(url) { var parentWin = null; var fs = window.parent.frames; for (var i = 0; i < fs.length; i++) { var loc = fs[i].location.href; if (loc && loc.indexOf(url) != -1) { parentWin = fs[i]; break; } } return parentWin; };
http://www.eclipsezone.com/eclipse/forums/t53459.html     http://www.asjava.com/core-java/java-remote-debugging-on-weblogic-server-with-eclipse/

页面元素居中对齐

    博客分类:
  • CSS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <STYLE TYPE="text/css"> .centralPart{ height:100px; width: 800px; margin: 0 auto; ...
  --导出数据库 exp test2/test2@trp84 file=e:\test2.dmp owner=test2   --导入数据库 imp test2/test2@orcl file='e:\test.dmp' fromuser=test touser=test2   --查看oracle当前的连接数   select * from v$session where username is not null   --查看不同用户的连接数 select username,count(username) from v$session where username i ...
修改以下文件 ".\config\cells\server2Node01Cell\nodes\server2Node01\servers\server1\server.xml"(209,340):     <jvmEntries xmi:id="JavaVirtualMachine_1183122130078" verboseModeClass="false" verboseModeGarbageCollection="false" verboseModeJNI="false" ...
default: jdbc:jtds:sqlserver://10.1.30.141:1433/testA has a instance name: jdbc:jtds:sqlserver://10.1.30.141:1580/testB;instance=sqlserver2008

js数值进制转换

    博客分类:
  • js
(int).toString(16); // converts int to hex, eg 12 => "C" (int).toString(8); // converts int to octal, eg. 12 => "14" parseInt(string,16) // converts hex to int, eg. "FF" => 255 parseInt(string,8) // converts octal to int, eg. "20" => 16  
*.pdm文件内容是xml格式的,故如需快速查找替换,可用普通编辑器(如EditPlus)打开,查找替换完后保存再用PowerDesigner打开即可。   注:防止出错或出现乱码,建议在操作前先备份原文件。

oracle常用函数

    博客分类:
  • db
NVL(Expr1,Expr2)如果Expr1为NULL,返回Expr2的值,否则返回Expr1的值 NVL2(Expr1,Expr2,Expr3)如果Expr1为NULL,返回Expr2的值,否则返回Expr3的值 NULLIF(Expr1,Expr2)如果Expr1和Expr2的值相等,返回NULL,否则返回Expr1的值     ..持续更新
  var check = function(r){ return r.test(navigator.userAgent.toLowerCase()); }; var isOpera = check(/opera/); var isChrome = check(/chrome/); var isWebKit = check(/webkit/); var isSafari = !isChrome && check(/safari/); var isSafari2 = isSafari && check(/applewebkit\/4/); v ...
  <html> <head> <title>文字自动截断效果</title> <style> div.show{ width:200px; height:100px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; } </style> </head> <body> <div class="show">文字自动截断效果文字自动截断效果</div> &l ...
treeNode.getUI().toggleCheck();
Run-->External Tools-->External Tools Configurations...新建一个 programlocation 里面填 :C:/WINDOWS/explorer.exeArguments 里面填: ${container_loc}    如果不想在控制台提示运行信息,可以在common选项卡中去掉allocate console的勾即可。   使用方法:选择一个文件/文件夹,运行刚才新建的program即可打开文件所在的文件夹
摘自:http://fangl99.iteye.com/blog/1103707   Eclipse 3.7 Indigo在Win7和Vista下面,文本编辑器默认使用的是Consolas字体,而且还不能改成Courier New!!! 研究了一下,发现问题出在Jface,里面对各个操作系统分开配置字体 嗯很简单了,有空的同学写个Fragment,懒的同学跟我一样,直接编辑 org.eclipse.jface_3.7.0.I20110522-1430.jar\org\eclipse\jface\resource\jfacefonts_windows7.properties ...
场景:extjs+struts2提交含上传文件组件的表单后,后台并无异常, 前台却报syntax error的脚本错误   分析:经查不少资料,不少人说要在返回的信息里包含 success:true 的文本信息,且要指定输出内容类型为text/html,若是"text/plain"或其它,extjs会将后台输出的内容嵌入"<pre></pre>"内,然后才作为json字符串来转换js对象,转换当然会报脚本错误。   以下为后台代码片段:     HttpServletResponse response = getRes ...
Global site tag (gtag.js) - Google Analytics