-
tts
vc++利用mfc实现speech sdk(vc++ use mfc speech sdk)
- 2012-11-01 21:53:09下载
- 积分:1
-
RDA5836 SDK
RDA5836在单芯片上集成了高性能 MCU、Bluetooth、FM Radio、PMU、Codec 及Memory,支持SBC、 AAC、WMA等多种解码算法,拥有丰富的接口资源,可以满足各类蓝牙产品的开发需求.
- 2022-11-16 19:25:12下载
- 积分:1
-
《VxWorks软件开发项目实例完全解析》(光盘)
说明: vxworks软件开发项目实例完全解析
软件开发例程(Complete analysis of VxWorks software development project Software development routines)
- 2020-04-10 14:17:34下载
- 积分:1
-
DAO
说明: DAO读写(literacy DAO)
- 2005-10-29 23:52:58下载
- 积分:1
-
Source
卫星轨道书中附带的C++程序,很好地一本书,对于卫星设计很重要(The book comes with a satellite orbit C++ program, a good book, it is important for the satellite design)
- 2014-01-10 10:54:02下载
- 积分:1
-
C#以二进制格式打开和保存文件
C#使用BinaryWriter、BinaryReader对象分别保存和读取二进制文件,程序分两部分,先来看第一部分:
C#以二进制格式保存文件:设置保存文件的格式:
saveFileDialog1.Filter = "二进制文件(*.dat)|*.dat";
if (saveFileDialog1.ShowDialog() == DialogResult.OK)
{
//使用“另存为”对话框中输入的文件名实例化FileStream对象
FileStream myStream = new FileStream(saveFileDialog1.FileName, FileMode.OpenOrCreate, FileAccess.ReadWrite);
//使用FileStream对象实例化BinaryWriter二进制写入流对象
BinaryWriter myWriter = new BinaryWriter(myStream);
//以二进制方式向创建的文件中写入内容
myWriter.Write(textBox1.Text);
//关闭当前二进制写入流
myWriter.Close();
//关闭当前文件流
myStream.Close();
textBox1.Text = string.Empty;
}
打开文件时同样也是以二进制来打开读取文件内容:
//设置打开文件的格式
openFileDialog1.Filter = "二进制文件(*.dat)|*.dat";
if (openFileDialog1.ShowDialog() == DialogResult.OK)
{
textBox1.Text = string.Empty;
//使用“打开”对话框中选择的文件名实例化FileStream对象
FileStream myStream = new FileStream(openFileDialog1.FileName, FileMode.Open, FileAccess.Read);
//使用FileStream对象实例化BinaryRea
- 2022-02-14 18:03:07下载
- 积分:1
-
Regprocess
这是一个通过注册表列举正在运行进程的源码。通过修改主机名可以列举远程主机进程。(This is a listed by the registry is the process of running FOSS. By modifying the host name could give remote host process.)
- 2006-09-19 20:57:06下载
- 积分:1
-
A7102Bv03En
台湾苼科A7102的芯片资料,内含操作说明(Taiwan Sheng Section A7102 chip data, contains instructions)
- 2010-07-22 09:03:38下载
- 积分:1
-
reshiqi
该源程序是合泰46R47单片机做的热水器源程序。(The source code is Hetai 46R47 Singlechip source water heaters do.)
- 2008-04-22 14:33:12下载
- 积分:1
-
LMS3
说明: 介绍了一种新的变步长LMS自适应滤波算法。该算法具有较快的收敛速度和较小的失调,并且他不受已经存在的不相关噪声的干扰。(This paper introduces a new variable step size LMS adaptive filtering algorithm. That the algorithm has a faster convergence speed and a smaller offset, and he is not already in existence are not related to noise.)
- 2010-03-31 11:01:59下载
- 积分:1