搜索结果
找到约 113 项符合
request 的查询结果
按分类筛选
- 全部分类
- 技术资料 (14)
- Java编程 (14)
- 其他 (6)
- Internet/网络编程 (6)
- SCSI/ASPI (5)
- 单片机编程 (4)
- 驱动编程 (4)
- 其他书籍 (3)
- 单片机开发 (3)
- Java书籍 (3)
- Jsp/Servlet (3)
- 通讯/手机编程 (2)
- 操作系统开发 (2)
- 通信网络 (2)
- 电子书籍 (2)
- 压缩解压 (2)
- Linux/Unix编程 (2)
- 串口编程 (2)
- 网络 (2)
- 文件格式 (2)
- J2ME (2)
- 其他行业 (2)
- Symbian (2)
- 医药行业 (2)
- 软件设计/软件工程 (2)
- 行业发展研究 (2)
- 书籍 (1)
- C/C++语言编程 (1)
- 电源技术 (1)
- 接口技术 (1)
- 书籍源码 (1)
- 软件工程 (1)
- autocad教程 (1)
- 可编程逻辑 (1)
- 技术管理 (1)
- 通讯编程文档 (1)
- 文章/文档 (1)
- 嵌入式Linux (1)
- VxWorks (1)
- 系统设计方案 (1)
- JavaScript (1)
- VC书籍 (1)
- Ajax (1)
- VIP专区 (1)
Jsp/Servlet struts2.0入门
struts2.0入门,附有源代码 以及说明文档
流程,登录,request,session功能的实现
Java编程 Reads/writes text as a character stream, buffering characters so as to provide for the efficient rea
Reads/writes text as a character stream, buffering characters so as to provide for the efficient reading/writing of characters, arrays, and lines.
The buffer size may be specified, or the default size may be used. The default is large enough for most purposes.
In general, each read request made of ...
Java书籍 pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernu
pstmt = conn.prepareStatement("select ordernumber,datetime,price,dayofmoney from zujie where ordernumber= "+ cdName + " ")
rs=pstmt.executeQuery()
if(rs!=null && rs.next()){
String datetime = rs.getString(2)
java.text.SimpleDateFormat formatter = new java.text.SimpleDateFormat ("yyyy-MM-dd") ...
Internet/网络编程 自己编写的Java的上传类
自己编写的Java的上传类,可以多文件同时上传,并提供了Request的方法来获得变量值,过滤文件等功能。
其他 .数据结构 假设有M个进程N类资源
.数据结构
假设有M个进程N类资源,则有如下数据结构:
MAX[M*N] M个进程对N类资源的最大需求量
AVAILABLE[N] 系统可用资源数
ALLOCATION[M*N] M个进程已经得到N类资源的资源量
NEED[M*N] M个进程还需要N类资源的资源量
2.银行家算法
设进程I提出请求Request[N],则银行家算法按如下规则进行判断。
(1)如果Request ...
其他 数据结构 假设有M个进程N类资源
数据结构
假设有M个进程N类资源,则有如下数据结构:
MAX[M*N] M个进程对N类资源的最大需求量
AVAILABLE[N] 系统可用资源数
ALLOCATION[M*N] M个进程已经得到N类资源的资源量
NEED[M*N] M个进程还需要N类资源的资源量
2.银行家算法
设进程I提出请求Request[N],则银行家算法按如下规则进行判断。
(1)如果Request[N ...
VC书籍 RAR Registration and Support sites ~~~ ~~~ ~~~ ~~~ ~~~ ~~~~ The latest version of RAR and supp
RAR Registration and Support sites
~~~ ~~~ ~~~ ~~~ ~~~ ~~~~
The latest version of RAR and support conferences are available at
the sites and BBS s listed below. Most of them are FIDONET-nodes, so
you can request the latest version of RAR, via file request, using
the magic name of RAR .
NOTE: Thi ...
单片机编程 An easy way to work with Exter
Internal Interrupts are used to respond to asynchronous requests from a certain part of themicrocontroller that needs to be serviced. Each peripheral in the TriCore as well as theBus Control Unit, the Debug Unit, the Peripheral Control Processor (PCP) and the CPUitself can generate an Interrupt Requ ...
Linux/Unix编程 This is the first ever open source implementation of Dynamic Host Configuration Protocol for IPv6 (D
This is the first ever open source implementation of Dynamic Host Configuration Protocol for IPv6 (DHCPv6) server and client on Linux Operating System. The server provides leases (durations or lifetimes) on IPv6 addresses to the clients who request for it
Java编程 post 提交用户输入的方式是隐含提交
post 提交用户输入的方式是隐含提交,在ASP端用request.getform()来获取输入域的值;
get 提交用户输入的方式是显式提交,提交时在浏览器的地址栏里可以看见
用户输入的内容(你在Google中输入Java搜索,你按查找后可以在地址栏里看到java),
在ASP端用request.getquery()来获取输入域的值; ...