上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 52 下一页
摘要: 今天一同事在用fwrite向文件中写数据时,当写入0x0A时,其前面总会被加上一个0x0D。后来在网上查了,发现也有人遇到类似问题。出现这个问题的原因是fwrite 在以文本方式写文件时,碰到0x0A,会自动在前面加上0x0D,以够成回车换行符。解决办法是以二进制方式打开文件,然后进行写文件。出问题的代码:fopen( filename, "w+" );解决问题的代码:fopen( filename, "wb+" ); 阅读全文
posted @ 2010-08-18 17:11 andriod2012 阅读(902) 评论(0) 推荐(0) 编辑
摘要: File system drivers can be loaded in two different ways: loaded in response to a disk being attached to the system (discovered during boot or after media insertion), and auto-loaded during the boot sequence.Auto-Loaded File SystemsAuto-loaded file systems are monolithic file systems that do not use 阅读全文
posted @ 2010-08-14 09:33 andriod2012 阅读(162) 评论(0) 推荐(0) 编辑
摘要: 简单介绍一下这几个关键字,以前也看过多次,基本上是看过了就忘,忘了再看。这次又看了下,把自己的理解说下。先说说 const,这儿只说const修饰变量的情况。const用于定义一个常量,也就是说定义的这个变量其实是不可变的。但是不可变只是对于当前代码段来说的,并不是说这个变量绝对的不可变。例如,系统中断如果要修改这个变量的值的话,const就无法阻止了。volitale是用来告诉编译器,某个变量,不仅在当前代码段中可能被修改,也可能被其他程序修改,如中断等。所以,就算当前代码中没有修改该变量的值,但它的值也可能被其他地方修改而改变。一般编译器都会做一些优化操作,如下:int i = 10;in 阅读全文
posted @ 2010-08-13 12:32 andriod2012 阅读(214) 评论(1) 推荐(0) 编辑
摘要: 同事的一台DELL Optiplex 330的机器启动不正常,装的是win xp,启动时,刚出来windows 启动时的进度条,机器就重启。开始以为是硬盘坏了,后来一位大牛说,可能是硬盘接口设置不对。检查了一下,果然是。DELL默认,将硬盘接口设置为AHCI,需要将其改为ATA才可正常。修改办法:BIOS -> Drives -> SATA Operation。 阅读全文
posted @ 2010-08-13 10:54 andriod2012 阅读(504) 评论(0) 推荐(0) 编辑
摘要: FSDMGR provides many helper functions to make developing an FSD easier. In particular, registry helper functions provide a simple mechanism for configuring an FSD for a particular storage device and I/O helper functions provide a media-independent mechanism for communicating with a block/disk driver 阅读全文
posted @ 2010-08-02 22:08 andriod2012 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Struts2 相 关 资 料Struts2并非继承自Struts1的构架机制,而是继承自WebWork,因为Struts2是对WebWork的升级而产生的,Struts2吸收了Struts1和WebWork两者的优势,从而在稳定性、性能等各方面都有很好的保证。Apache Struts2即使之前的WebWork2,经历几年的发展后WebWork和Struts2社区决定合并,也即是现在的Struts2。Struts1和Struts2的不同Action类:Struts1要求Action类继承一个抽象基类,Struts1的普遍问题是使用抽象类编程而不是接口Struts2 Action类可以实现一个 阅读全文
posted @ 2010-07-17 10:33 andriod2012 阅读(1146) 评论(0) 推荐(0) 编辑
摘要: ajax框架与SSH交互总返回errorFireFox查看异常显示Class org.apache.struts2.json.JSONWriter can notaccess a member of classorg.apache.commons.dbcp.PoolingDataSource$PoolGuardConnectionWrapper withmodifiers "public"发现一个规律,凡是在struts2 pojo action中有对象属性的,并被hibernate管理的,都会出现这种问题。因为hibernate会给每个被管理的对象加上hibernateL 阅读全文
posted @ 2010-07-07 10:08 andriod2012 阅读(401) 评论(0) 推荐(0) 编辑
摘要: Writing Windows CE Device Drivers: Principle to PracticeBy David G. Heil, CalAmp, September 22, 20060CommentsDavid Heil of CalAmp provides an overview of the new Windows CE 6.0 kernel architecture and describes the various driver models and device types supported, as well some guidance in creating C 阅读全文
posted @ 2010-06-21 22:20 andriod2012 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 下面转个老外写的介绍FSDMGR的文章,不错,转到这里,权当备份。INTERACTING WITH FSDMGRIn interacting with the FSDMGR and its helper functions, there are two pseudo-handle types that will be used: HDSK and HVOL (these types are defined in fsdmgr.h). While there is a one-to-one mapping of HDSK to HVOL, they are not the same constr 阅读全文
posted @ 2010-06-21 22:19 andriod2012 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 各种各样的编解码在各种领域得到广泛的应用,下面就把各种codec的压缩率进行一下比较。现主要有的speech codec 有: G.711, G.723, G.726 , G.729, ILBC, QCELP, EVRC, AMR, SMV主要的audio codec 有: real audio, AAC, AC3, MP3, WMA, SBC等各种编解码都有其应用的重点领域。本文主要对speech codec相关指标进行总结: ITU 推出G.7XX系列的speech codec, 目前广泛应用的有:G.711,G.723, G.726, G.729. 每一种又有很多分支,如G.729就有g 阅读全文
posted @ 2010-06-19 21:54 andriod2012 阅读(717) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 52 下一页