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
Web Service It is based on SOAP and return data in XML form. It support only HTTP protocol. It is not open source...
头文件unistd.h是Linux/Unix的系统调用,包含了许多UNIX系统服务函数原型,如open、read、write、_exit、getpid等函数。在linux下能够编译通过的包含此头文件的程序,在VC下编译时出现了如下问题 fatal error C1083: Cannot open i...
分类:
其他好文 时间:
2014-06-18 10:31:54
阅读次数:
244
完整的异常信息如下:org.hibernate.loader.MultipleBagFetchException: cannot simultaneously fetch multiple bags at org.hibernate.loader.BasicLoader.postInstantia....
分类:
其他好文 时间:
2014-06-18 10:06:31
阅读次数:
198
开放封闭原则(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