如何用c++实现WMV视频文件的读取,万分
2018-09-29 · 百度知道官方认证企业
腾讯电脑管家
腾讯电脑管家是腾讯公司推出的免费安全管理软件,能有效预防和解决计算机上常见的安全风险,并帮助用户解决各种电脑“疑难杂症”、优化系统和网络环境,是中国综合能力最强、最稳定的安全软件。
向TA提问
关注
展开全部
就像这样,打开文件直接读取咯
void CByshejiDlg::OnDakai()
{
CString
FilePathName;
CFileDialog dlg(TRUE);///TRUE为OPEN对话框,FALSE为SAVE AS对话框
if(dlg.DoModal()==IDOK)
{
FilePathName=dlg.GetPathName();
CFile file;
if (file.Open(FilePathName, CFile::modeRead))
{
BYTE *pbuf = new BYTE[file.GetLength()];
file.Read(pbuf, file.GetLength());
file.Close();
//对pbuf进行处理
//处理完毕释放内存
delete[] pbuf;
}
}
void CByshejiDlg::OnDakai()
{
CString
FilePathName;
CFileDialog dlg(TRUE);///TRUE为OPEN对话框,FALSE为SAVE AS对话框
if(dlg.DoModal()==IDOK)
{
FilePathName=dlg.GetPathName();
CFile file;
if (file.Open(FilePathName, CFile::modeRead))
{
BYTE *pbuf = new BYTE[file.GetLength()];
file.Read(pbuf, file.GetLength());
file.Close();
//对pbuf进行处理
//处理完毕释放内存
delete[] pbuf;
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询