首页 > 2015年10月13日 > 全部分享
Android WifiDisplay分析三:RTSP交互以及数据传输
前面我们分析到WifiDisplaySource会调用ANetworkSession的接口去创建一个socket,并在这个socket上监听是否有客户端的连接请求。先来看看Wifi Display规范的一些流程图:从之前的一篇文章中,当ANetworkSession创建好RTSP的listen so...
分类:移动平台   时间:2015-10-13 21:06:20    收藏:0  评论:0  赞:0  阅读:445
lintcode 容易题:Find the Connected Component in the Undirected Graph 找出无向图汇总的相连要素
题目:找出无向图汇总的相连要素请找出无向图中相连要素的个数。图中的每个节点包含其邻居的 1 个标签和 1 个列表。(一个无向图的相连节点(或节点)是一个子图,其中任意两个顶点通过路径相连,且不与超级图中的其它顶点相连。)样例给定图:A------B C \ | | \ | |...
分类:其他   时间:2015-10-13 21:06:09    收藏:0  评论:0  赞:0  阅读:302
IOS第一课基础代码
看到这些代码,让我想到了久违的C。import Foundationvar str = "Hello World"var sdd:Intsdd = 100let stt = 1var sz = Int[]()let sz1 = [1,2,3]print(str)第一句import Foundatio...
分类:移动平台   时间:2015-10-13 21:05:59    收藏:0  评论:0  赞:0  阅读:333
解决 listView gridView 与ScrollView嵌套时的冲突
1 package com.xqx.fight; 2 3 import android.app.Activity; 4 import android.os.Bundle; 5 import android.view.Menu; 6 import android.view.MotionEvent;.....
分类:其他   时间:2015-10-13 21:05:49    收藏:0  评论:0  赞:0  阅读:233
复杂业务简单化的一个小技巧
在复杂系统中,当对业务数据进行“删除”时(一般不允许对业务数据进行删除,只是举例) ,需要根据其它业务数据进行判断如: 1.已生成出库单不允许删除, 2.付款单已确认不允许删除, 3.已经退换货则不允许删除。 实际业务中可能会更加复杂。 当出现这种情况时将导致“删除”业务判断会非常多,而...
分类:其他   时间:2015-10-13 21:05:29    收藏:0  评论:0  赞:0  阅读:281
ios7 sdk 新特性
iOS 7 is a major update with compelling features for developers to incorporate into their apps. The user interface has been completely redesigned. In ...
分类:移动平台   时间:2015-10-13 21:05:19    收藏:0  评论:0  赞:0  阅读:445
Codeforces Round #325 (Div. 2)D. Phillip and Trains BFS
D. Phillip and TrainsThe mobile application store has a new game called "Subway Roller".The protagonist of the game Philip is lo...
分类:其他   时间:2015-10-13 21:05:09    收藏:0  评论:0  赞:0  阅读:249
NodeJS学习笔记
分类:Web开发   时间:2015-10-13 21:04:59    收藏:0  评论:0  赞:0  阅读:288
Java控制台实现计算器[面向对象思想-02]
import java.util.*;public class Test01{// 测试类 public static void main(String [] args){ finalTest(); } public static void finalTest(){ ...
分类:编程语言   时间:2015-10-13 21:04:39    收藏:0  评论:0  赞:0  阅读:308
Tomcat7 内存溢出
处理过程站长网http://www.software8.co/wzjs/java/2575.html第一次折腾:在tomcat\bin\catalina.bat 中 set JAVA_OPTS=%JAVA_OPT% -server -XX:PermSize=128m -XX:MaxPermSize=...
分类:其他   时间:2015-10-13 21:04:29    收藏:0  评论:0  赞:0  阅读:269
objective-c常用数学方法
1、 三角函数 double sin (double);正弦 double cos (double);余弦 double tan (double);正切 2 、反三角函数 double asin (double); 结果介于[-PI/2, PI/2] double acos (doubl...
分类:其他   时间:2015-10-13 21:04:19    收藏:0  评论:0  赞:0  阅读:270
[LeetCode]24. Search Insert Position插入位置
Given a sorted array and a target value, return the index if the target is found. If not, return the index where it would be if it were inserted in or...
分类:其他   时间:2015-10-13 21:04:09    收藏:0  评论:0  赞:0  阅读:231
iOS 8 定位失败问题
首先plist定义两个string:NSLocationWhenInUseUsageDescriptionNSLocationAlwaysUsageDescription然后调用[self.locationManager requestWhenInUseAuthorization]或者[self.l...
分类:移动平台   时间:2015-10-13 21:03:59    收藏:0  评论:0  赞:0  阅读:354
Android 4.2 Wifi Display 之 Settings 源码分析
System Server是Android系统的核心,他在Dalvik虚拟机启动后立即开始初始化和运行http://blog.csdn.net/sadamoo/article/details/27665149最近在学习Android 4.4上面的WifiDisplay(Miracast)相关的模块,...
分类:移动平台   时间:2015-10-13 21:03:49    收藏:0  评论:0  赞:0  阅读:625
java web 手动部署项目步骤
java Web 手动部署项目步骤1 在tomcat下面的webapps下面建立需要部署的文件夹(eg:demo);2 在demo下建立 WEB-INF WETA-INF src 文件夹;3 在src下建立新的servlet.java文件4 在WEB-INF下面建立classes和web.xml文....
分类:编程语言   时间:2015-10-13 21:03:39    收藏:0  评论:0  赞:0  阅读:216
python列表和分片
str = "0123456789"print("打印第0个元素:" ,str[0])print("负数表示倒数第N个元素,-1表示倒数第一个元素:" ,str[-1])print("分片操作,str[start:end], start会包含在结果中而end却不会:" ,str[1:5])print...
分类:编程语言   时间:2015-10-13 21:03:29    收藏:0  评论:0  赞:0  阅读:283
Lessons Learned from Developing a Data Product
Lessons Learned from Developing a Data ProductFor an assignment I was asked to develop a visual ‘data product’ that informed decisions on video game r...
分类:其他   时间:2015-10-13 21:03:19    收藏:0  评论:0  赞:0  阅读:203
[题解+总结]20151013搜索
1、前言 互测题第二弹——来自YMDragon的搜索。一大堆以前正式比赛的题目,什么CTSC,HNOI和NOI云云,某些题实在不好吐槽。。。把搜索出在考场上还出得这么丧病。2、match 比赛来源:BZOJ 3139 /HNOI 2013链接:3、game 智慧珠游戏来源:BZOJ 1501 / ....
分类:其他   时间:2015-10-13 21:03:09    收藏:0  评论:0  赞:0  阅读:252
在win10上新装ubuntu出现file not found
原因非常简单,我的ubuntu是64位的。所以内核文件为vmlinuz.efi,故easybcd里面启动的配置文件应该是:title Install Ubunturoot (hd0,0)kernel (hd0,0)/vmlinuz.efi boot=casper iso-scan/filename=...
分类:Windows开发   时间:2015-10-13 21:02:59    收藏:0  评论:0  赞:0  阅读:427
ios短信和电话--参考
调用打电话功能[[UIApplicationsharedApplication] openURL:[NSURL URLWithString:@"tel://10086"]];调用发短信功能[[UIApplication sharedApplication]openURL:[NSURL URLWith...
分类:移动平台   时间:2015-10-13 21:02:49    收藏:0  评论:0  赞:0  阅读:335
1772条   上一页 1 ... 11 12 13 14 15 ... 89 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!