- 浏览: 71568 次
- 性别:
- 来自: 大连
最新评论
文章列表
create tablespace jk datafile 'D:\orcl\tablespace\jk.dbf' size 900m;
create user jk identified by jk default tablespace jk;
grant connect,resource to jk;
grant dba to jk;
或者
GRANT
CREATE SESSION, CREATE ANY TABLE, CREATE ANY VIEW ,CREATE ANY INDEX, CREATE ANY PROCEDURE,
ALTER ANY TABLE, ALTER ...
1.oracle@linux:~> sqlplus / as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on Sun Feb 21 16:36:40 2010
Copyright (c) 1982, 2007, Oracle. All rights reserved.
Connected to an idle instance.
SQL> startup
ORACLE instance started.
Total System Global Area 16034119
2.oracle@linux:~> ...
--------------------------------------------------
AbcSaxHandler handler = new AbcSaxHandler();
FileInputStream in;
in = new FileInputStream(new File("D:\\abc\\req.xml"));
SAXParserFactory factory = SAXParserFactory.newInstance();
...
- 2009-12-04 13:23
- 浏览 695
- 评论(0)
// 设置HttpResponse的Header
httpRes.addAllHeader(header);
httpRes.setStatus(200);
byte[] resBody;
httpRes.setContentLength(resBody.length);
httpRes.write(resBody);
this.res.getOutputStream().write(data, begin, length);
this.res.getOutputStream().flush();
//异常
htt ...
- 2009-12-04 13:08
- 浏览 597
- 评论(0)
ByteArrayDataSource baDataSource =
new ByteArrayDataSource(byte[], contentType);
DataHandler dh = new DataHandler(baDataSource);
attachments.addDataHandler(id, dh);
___________________________________________________
public class Res ...
- 2009-12-04 12:58
- 浏览 537
- 评论(0)
Attachments attachments = _returnMessageContext.getAttachmentMap();
attachments.getAllContentIDs();
return new ResponseWithAttachments<Rsp, Attachments>(a,b)
*********************************************************
// 构造请求消息
AbcServiceStub.Que ...
- 2009-12-04 12:53
- 浏览 968
- 评论(0)