wireshark过滤抓包时,capture fillter填写完后会崩溃的问题,报The link type of interface \Device\NPF_{11A6562D-E3B3-32BE-AEA1-3ACE8EBC1949} was not specified.错误。点击Compile...
分类:
其他好文 时间:
2014-07-26 01:12:16
阅读次数:
214
一 在Android 中,拍照对应的Action 是android.provider.MediaStore.ACTION_IMAGE_CAPTURE. 用于拍照的Activity 需要返回照片图像数据,摄像对应的Action 是android.provider.MediaStore.ACTION_V...
分类:
移动开发 时间:
2014-07-23 22:18:27
阅读次数:
288
Appium运行的时候,查看到log输出为:info: Welcome to Appium v1.2.0 (REV e53f49c706a25242e66d36685c268b599cc18da5)info: Appium REST http interface listener started o...
分类:
移动开发 时间:
2014-07-22 23:02:52
阅读次数:
433
addEventListener中的第三个参 数是useCapture, 一个bool类型。当为false时为冒泡获取(由里向外),true为capture方式(由外向里)。document.getElementById('id1').addEventListener('click'...
分类:
Web程序 时间:
2014-07-16 20:14:41
阅读次数:
248
C++11添加了一项名为lambda表达式的新功能.通过这项功能能编写内嵌的匿名函数,而不必编写独立函数或函数对象,使得代码更加理解.
lambda表达式包含以下部分.
[capture_block](parameters) mutable exception_specification->return_type {body}
现在分析各个部分的内容:
(capture_block)捕捉块...
分类:
编程语言 时间:
2014-07-16 11:30:48
阅读次数:
210
Microsoft为部署windows操作系统推荐了一些有针对性的方式。这些方式的范围从在一些计算机上手动配置Windows软件,到使用自动化工具和技术将软件部署到数千台计算机。有关四种常用部署策略的详细信息:与零售媒体紧密接触:一个实践性的手动部署,其中您可以使用零售安装DVD坐..
一站式学习Wireshark(一):Wireshark基本用法 | 快课网 按照国际惯例,从最基本的说起。抓取报文:下载和安装好Wireshark之后,启动Wireshark并且在接口列表中选择接口名,然后开始在此接口上抓包。例如,如果想要在无线网络上抓取流量,点击无线接口。点击Capture Op...
分类:
其他好文 时间:
2014-07-09 14:27:00
阅读次数:
259
最近看到很多关于C++11的文档,有些是我不怎么用到,所以就略过去了,但是lambda表达式还是比较常用的,其实最开始学习python的时候就觉得lambda这个比较高级,为什么C++这么弱。果然C++增加这个东西。语法[ capture ] ( params ) mutable exception...
分类:
编程语言 时间:
2014-07-08 23:49:31
阅读次数:
400
Given a 2D board containing'X'and'O', capture all regions surrounded by'X'.A region is captured by flipping all'O's into'X's in that surrounded region...
分类:
其他好文 时间:
2014-07-06 16:10:55
阅读次数:
138
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
startActivityForResult(intent, reqCode);//reqCode是返回的code。
但是在有些手机会在protected void onActivityResult(int requestCode...
分类:
移动开发 时间:
2014-07-06 00:28:15
阅读次数:
321