码迷,mamicode.com
首页 >  
搜索关键字:send    ( 4884个结果
Cocos Code IDE解决ios模拟器和Android真机无法热更新代码问题
修改Runtime.cpp文件,添加一些代码 ``` bool FileServer::receiveFile(int fd) { // ... string finish("finish\n"); send(fd, finish.c_str(), finish.size(),0); CCLOG("finish\n"); // I add these code Dir...
分类:移动开发   时间:2014-08-09 11:52:57    阅读次数:353
上传图片
昨天,有个人让我做个上传图片和留言的功能,我接了,有钱拿,我必须要接啊,然后我翻出了w3cschool上的上传功能,三加五除二,把他给改好了,赚了80块钱。 还是关于dede的,短信息留言时,要加上传图片和留言。 首先,要在添加页面即 member/templets/pm_send.htm中...
分类:其他好文   时间:2014-08-07 18:36:20    阅读次数:262
jQuery与Ajax的应用
XMLHttpRequest对象 XHRAjax核心XMLHttpRequest对象:xhr.open("get/post","example.txt",false);xhr.send(null);http://dev.yesky.com/91/2687091.shtmljQuery对Ajax进行了...
分类:Web程序   时间:2014-08-06 22:50:02    阅读次数:228
UITextfield代理方法传递
The sequence of messages that both text views and text fields send to their delegates is as follows: 1. Just before a text object becomes first resp.....
分类:其他好文   时间:2014-08-06 22:10:23    阅读次数:216
Linux中的EAGAIN含义
首先是我把套接字设置为异步的了,然后在使用write发送数据时采取的方式是循环发送大量的数据;由于是异步的,write\send将要发送的数据提交到发送缓冲区后是立即返回的,并不需要对端确认数据已接收。在这种情况下是很有可能出现发送缓冲区被填满,导致write\send无法再向缓冲区提交要发送的数据...
分类:系统相关   时间:2014-08-06 18:52:41    阅读次数:276
android发送邮件
众所周知,在Android中调用其他程序进行相关处理,几乎都是使用的Intent,所以,Email也不例外。在Android中,调用Email有三种类型的Intent: Intent.ACTION_SENDTO 无附件的发送 Intent.ACTION_SEND 带附件的发送 Intent.A...
分类:移动开发   时间:2014-08-06 18:29:31    阅读次数:211
Caused by: java.lang.SecurityException: Permission Denial: not allowed to send broadcast android.intent.action.HEADSET_PLUG
crash information:Caused by: java.lang.SecurityException: Permission Denial: not allowed to send broadcast android.intent.action.HEADSET_PLUG from at....
分类:移动开发   时间:2014-08-05 13:52:59    阅读次数:1317
linux备份和mysql登陆自动输入密码
1.mysql自动登陆,系统自己输入密码(1)安装亿需要的软件[root@db2~]#yuminstallexpect-*(2)在脚本中写入命令#!/usr/bin/expect-f--使用expect软件settimeout2--输出密码时延时2秒spawnmysql-uroot-p--mysql登陆命令expect"system"--mysql的密码send"system\n"--mysql的密码inte..
分类:数据库   时间:2014-08-05 03:15:19    阅读次数:265
Android学习路线(五)开启另一个Activity
在完成了 上一篇课程后,你已经有了一个应用。这个应用展示了一个包含一个文本框和一个按钮的activity(一个单独的界面)。在这次的课程中,你将会通过在MainActivity中添加一些代码,来让当给你点击Send按钮时能够跳转到另一个activity中。 响应Send按钮 为了响应按钮的点击事件,打开fragment_main.xml 布局文件,然后在    元素中加入an...
分类:移动开发   时间:2014-08-05 00:41:39    阅读次数:382
Streaming Video with RTSP and RTP
The Code In this lab you will implement a streaming video server and client that communicate using the Real-Time Streaming Protocol (RTSP) and send data using the Real-time Transfer Protocol (RTP). Y...
分类:其他好文   时间:2014-08-04 11:06:37    阅读次数:413
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!