码迷,mamicode.com
首页 >  
搜索关键字:put    ( 16494个结果
PL/SQL学习
资料1 -- Created on 2014/8/20  declare    -- Local variables here   i integer; begin   i := 12;   -- Test statements here   DBMS_OUTPUT.put_line(i); end; 资料2 declare    cursor s is       ...
分类:数据库   时间:2014-08-20 09:20:36    阅读次数:228
[Java Basics] multi-threading
1, InterruptInterruption in Java is not pre-emptive. Put another way both threads have to cooperate in order to process the interrupt properly. If the...
分类:编程语言   时间:2014-08-19 23:46:45    阅读次数:235
QT QNetworkAccessManager 如何支持RESTFul的HTTP Patch方法
HTTP Patch方法是除了post,get,put,delete之外的一个新方式,网上查不到的,也算是独家吧:主要用下面这个方法:QNetworkReply *sendCustomRequest(const QNetworkRequest &request, const QByteArray &...
分类:数据库   时间:2014-08-19 22:14:55    阅读次数:787
Vsftpd虚拟用户配置
上传下载:put/get/mput/mget#chkconfig --level 35 vsftpd on#service vsftpd start#service vsftpd stop#service vsftpd status#service vsftpd restartvsftpd.conf...
分类:其他好文   时间:2014-08-19 15:50:34    阅读次数:219
[转]JQuery.Ajax之错误调试帮助信息
下面是Jquery中AJAX参数详细列表:参数名类型描述urlString(默认: 当前页地址) 发送请求的地址。typeString(默认: "GET") 请求方式 ("POST" 或 "GET"), 默认为 "GET"。注意:其它 HTTP 请求方法,如 PUT 和 DELETE 也可以使用,但...
分类:Web程序   时间:2014-08-19 09:15:43    阅读次数:277
java中线程存活和线程执行的问题!
1 /* 2 下面的程序会出现下面的情况,当Thread-0, Thread-1, Thread-2都被wait的时候,可能会同时苏醒 3 Thread-0 put 4 Thread-1 put 5 Thread-2 put 6 Thread-3 get//在此处,...
分类:编程语言   时间:2014-08-19 00:53:53    阅读次数:266
简单中文数字转阿拉伯数字
#coding:cp936 __author__=‘JYC103‘ num_dic={‘一‘:1,‘二‘:2,‘三‘:3,‘四‘:4,‘五‘:5,‘六‘:6,‘七‘:7,‘八‘:8,‘九‘:9,‘零‘:0} put_num=raw_input(‘输入中文数字:‘) #printput_num forkeyinnum_dic: #printkey,num_dic[key] ifput_num==key: printput_num,‘对应的阿拉伯数字为:‘,num..
分类:其他好文   时间:2014-08-18 18:51:03    阅读次数:205
REST服务介绍
RESTful service是一种架构模式,近几年比较流行了,它的轻量级web服务,发挥HTTP协议的原生的GET,PUT,POST,DELETE。 REST模式的Web服务与复杂的SOAP和XML-RPC对比来讲明显的更加简洁,越来越多的web服务开始采用REST风格设计和实现。例如,Amazo...
分类:其他好文   时间:2014-08-17 12:56:12    阅读次数:282
Build Simple HTTP server
1. The server just support POST&PUT method2. It is a Python server, and save upload files in special folder3. How to do it, it is apple example code, ...
分类:其他好文   时间:2014-08-16 18:17:40    阅读次数:207
AspxGridView 弹框选择器 JS
function Dictionary() { this.data = new Array(); this.put = function (key, value) { this.data[key] = value; }; this.get = function ...
分类:Web程序   时间:2014-08-16 13:46:30    阅读次数:393
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!