void UdpClient::dataReceived(){ while(udpSocket->hasPendingDatagrams()) { QByteArray datagram; datagram.resize(udpSocket->pendingD...
分类:
其他好文 时间:
2015-06-29 23:44:51
阅读次数:
138
先到PHPExcel官网下载PHPExcel类http://phpexcel.codeplex.com/把excel类包含进来,然后直接使用getActiveSheet();//给当前活动sheet设置名称$objSheet->setTitle("demo1");//给当前sheet填充数据方法一$...
分类:
Web程序 时间:
2015-06-29 23:46:30
阅读次数:
228
>>> a={'host':'earth'}>>> a['port']=80>>> a{'host': 'earth', 'port': 80}>>> a('port')=80SyntaxError: can't assign to function call>>> a{'port'}=80Synt...
分类:
其他好文 时间:
2015-06-29 23:46:47
阅读次数:
381
如果想让linux识别U盘,需要把鼠标先定位在虚拟机的linux里面,然后插入优盘,优盘才会被linux识别,再用fdisk -l 来查看U盘的情况。/dev/sda1 * 1 6 48163+ 83 Linux/dev/sda2 7 515 4088542+ 83 Linux/dev/sda3 ....
分类:
系统相关 时间:
2015-06-29 23:43:58
阅读次数:
255
Install Servicesc create NCS.QMS.1QTicketPrinting.SG binpath= "D:\NCS\1Q_SG\ReportService\NCS.QMS.Reports.AppHost.exe" displayname= "NCS.QMS.1QTicketP...
分类:
其他好文 时间:
2015-06-29 23:46:15
阅读次数:
139
declare v_sal number := 6000;begin loop v_sal := v_sal + 1; dbms_output.put_line(v_sal); if v_sal = 8000 then ...
分类:
数据库 时间:
2015-06-29 23:45:15
阅读次数:
178
See the sumary below figure :We going to talk each step ...more detail
分类:
其他好文 时间:
2015-06-29 23:44:54
阅读次数:
116
之前介绍了Android Service与Thread的区别(点击查看Service与Thread区别),由于Service不是线程,它是在主线程中运行的,因此在Service中应该避免耗时操作,之前看到过很多帖子和代码都把耗时操作交给Service去处理,这样是不合理的。如果Service中有耗时...
分类:
其他好文 时间:
2015-06-29 23:43:36
阅读次数:
120
解决方案Serializer 启动项目WPFApplication获取正在运行程序的完整路径 //结果 "D:\\用户目录\\我的文档\\Visual Studio 2013\\Projects\\Serializer\\WPFApplication\\bin\\Debug\\WPFApplicat...
分类:
其他好文 时间:
2015-06-29 23:43:54
阅读次数:
122
[HubName("djwChat")] public class ChatHub:Hub { public void Send(string name) { //动态表达式 Clients.All.addMs...
分类:
其他好文 时间:
2015-06-29 23:43:43
阅读次数:
180
转载--->NSRunLoop(详解)NSRunLoop大部分情况在多线程编程的时候才会用到。。但是一般不会用NSRunLoop,因为它不是线程安全的。一般都建议用CFRunLoop,这个是线程安全的。input source and port-based custom source这些操作,是向线...
分类:
移动开发 时间:
2015-06-29 23:43:53
阅读次数:
237
Similar as "Majority Element". There are at most 2 such elements, for > floor(n/3), and every non-hit element will decrease count of EACH hit element....
分类:
其他好文 时间:
2015-06-29 23:45:05
阅读次数:
138
原文地址:http://www.codeproject.com/Articles/996857/Asynchronous-programming-and-Threading-in-Csharp-N介绍:Asynchronous programming and threading is very im...
前言 - 之前虽然会图片拉伸,但是IOS中有好几种方法可以图片拉伸。以前没有时间整理,今天准备把目前我所知道的几种方法整理出来,重点介绍非代码的方式。方法 1. IOS5之前这个方法,你只要填写左边和上边的长度,然后右边和下面的长度会用总长度减一,方法会自动用中间的那一个点来拉伸。 - (UIIm....
分类:
其他好文 时间:
2015-06-29 23:45:01
阅读次数:
430
1 无参数情况配置URL及其视图如下:1234(r'^hello/$', hello)def hello(request): return HttpResponse("Hello World")访问http://127.0.0.1:8000/hello,输出结果为“Hello World”2 ...
分类:
Web程序 时间:
2015-06-29 23:44:40
阅读次数:
172
1、属性操作1 //添加属性 2 $("#id").attr("style","color:#0C3");3 //获取属性4 $("#id").attr("style");2、ajax提交 1 $.ajax({ 2 type:'POST', 3 url:'pk/att...
分类:
Web程序 时间:
2015-06-29 23:42:11
阅读次数:
187
declare Type ref_cur_emp IS REF CURSOR RETURN scott.emp%RowType; cur_emp ref_cur_emp; rec_emp cur_emp%RowType; v_sql varchar2(100) := 'sel...
分类:
数据库 时间:
2015-06-29 23:43:51
阅读次数:
183