DOM4J是dom4j.org出品的一个开源XML解析包,它的网站中这样定义:Dom4j is an easy to use, open source library for working with XML, XPath and XSLT on the Java platform using th...
分类:
其他好文 时间:
2014-06-18 16:34:47
阅读次数:
302
因为android的安装包安装之后,是以压缩文件的形式存储。故在lua脚本中,直接使用io操作(如:io.open等)是无法找到文件的(ios和windows平台无此问题)。在论坛中找到一个解决办法http://www.cocoachina.com/bbs/read.php?tid=198542原理...
分类:
移动开发 时间:
2014-06-18 14:58:32
阅读次数:
294
.page_nav{clear:both; padding:15px 0; color:#666; font:normal 12px/24px Arial; text-align:center;}.page_nav a{display:inline-block; height:22px; margi...
分类:
Web程序 时间:
2014-06-18 13:54:39
阅读次数:
262
Web Service It is based on SOAP and return data in XML form. It support only HTTP protocol. It is not open source...
开放封闭原则(Open Closed Principle)表述为 "软件实体(类、模块、函数等)应对扩展开放,但对修改封闭。(Software entities (classes, modules, functions, etc.) should be open for extension, but...
分类:
其他好文 时间:
2014-06-17 21:14:56
阅读次数:
268
new function() {
var ws = null;
var connected = false;
var serverUrl;
var connectionStatus;
var sendMessage;
var connectButton;
var disconnectButton;
var sendButton;
var open = function(...
分类:
数据库 时间:
2014-06-17 19:35:50
阅读次数:
220
今天在公司搭建PHP的开发环境,我用的是xamppwin64的集成环境。以前在win32的平台上没有什么问题,但是今天蛋疼加便秘,各种问题出现。非常的不爽。我们一般用xampp来做php开发肯定要修改xampp/apache/conf/httpd.conf这个文件。像我就修改了这两个地方然后启动Apache,在浏览..
分类:
其他好文 时间:
2014-06-17 17:25:44
阅读次数:
236
--创建过程,参数为sys_refcursor,为out型
create or replace procedure aabbsys_refcursor(o out sys_refcursor) is
begin
open o for select * from basplumain;
end;
---
--测试过程,使用aabbsys_refcursor传出的值
create or repla...
分类:
其他好文 时间:
2014-06-17 16:04:12
阅读次数:
180
方法一:单纯的使用a标签下载文档方法二:使用js的window对象里面的方法//下载资源并弹出另外的页面window.location.href = './Download/CSH_resume.doc';window.open('http://www.baidu.com', '_blank');
分类:
Web程序 时间:
2014-06-17 14:14:07
阅读次数:
247
我们经常碰到的一种布局问题,就是两个容器并排分布。这时候我们考虑的就是如何实现,如果是小容器我们考虑的可能是display:inblock来实现但是如果是两个大容器,更多的时候我考虑的都是浮动来完成布局。但是很多时候我们对去清除浮动都是一种似懂非懂的方法,关于清除浮动有以下几个常见的方法:一、父级容...
分类:
其他好文 时间:
2014-06-17 13:39:44
阅读次数:
286