在VM-->removableDevice-->CD DVD-->加载iso镜像文件:[root@rusky2 mnt]# mount /dev/cdrom /mnt/cdrom mount: block device /dev/cdrom is write-protected, mounting ...
分类:
系统相关 时间:
2014-07-16 22:57:28
阅读次数:
247
在项目中需要监听ScrollView滑动到顶端和底端的时候以实现自己的ScrollView,那么怎样去监听呢?今天查看了一下ScrollView的源码,找到了一种方法。先看一下源码中的overScrollBy()方法: 1 protected boolean overScrollBy(int del...
分类:
移动开发 时间:
2014-07-16 21:17:38
阅读次数:
168
An internal error occurred during: Launching efax on Tomcat 7.x . 项目运行时报错因为你项目建的时候用的是Tomcat5.x 服务器 ,现在项目用的不是TOmcat5.x ,你必须把服务器改成7.x 以上版本就不会报错了具体办法:项目 ...
分类:
系统相关 时间:
2014-07-16 21:10:28
阅读次数:
224
(1)unity3d 中如何调用IOS的Api1、在C#脚本中使用 (1) 需要导入文件 using System.Runtime.InteropServices; (2) [System.Runtime.InteropServices.DllImport("__Internal")] ext...
分类:
其他好文 时间:
2014-07-16 21:09:15
阅读次数:
157
多继承class Person{public: Person(std::string theName); void introduce(); protected: std::string name;};class Teacher : public Person{pub...
分类:
编程语言 时间:
2014-07-16 20:45:08
阅读次数:
177
CvMat的矩阵结构 1 typedef struct CvMat 2 { 3 //矩阵中元素的类型 4 int type; 5 //行数据长度 6 int step; 7 8 /* for internal use only */ 9 int* r...
分类:
其他好文 时间:
2014-07-16 20:17:24
阅读次数:
187
类型强转换有2种。class Company{public: Company(std::string theName,std::string theProduct); virtual void printInfo(); protected: std::string name;...
分类:
编程语言 时间:
2014-07-13 12:32:39
阅读次数:
192
1.cs部分添加隐藏样式IntegratedEquipmentblock.Style.Add("display", "none");2.gridview添加奇偶行样式protected void gvIntegratedEquipmentList_RowDataBound(object sender...
分类:
其他好文 时间:
2014-07-13 11:56:31
阅读次数:
179
HTML部分 下载上传标准的EXCEL功能。防止其它伪EXCEL导入失败的情况。 CS部分/// /// 上传 /// /// /// protected void btnUp...
分类:
其他好文 时间:
2014-07-13 11:36:23
阅读次数:
226
HTML上传部分 文件名:文件(80M以内): protected void Button1_Click(object sender, EventArgs e) ...
分类:
其他好文 时间:
2014-07-13 11:24:43
阅读次数:
173