资源简介
上海大华电子秤接口说明,DEMO,PLU样本文件与说明等
上海大华电子秤接口说明,DEMO,PLU样本文件与说明等
代码片段和文件信息
#include “stdafx.h“
#include “FileRW.h“
void RoyaReadFile(CString strPath CStringArray &m_saRead)
{
CFile file;
file.Open(strPathCFile::modeNoTruncate|CFile::modeReadWrite|CFile::modeCreate);
DWORD dLength=file.SeekToEnd( );
file.SeekToBegin( );
CString strFile;
long length=(long)dLength;
while(strFile.GetLength() {
char buffer[1024];
int iRead=file.Read(buffer1024);
buffer[iRead]=0;
strFile+=buffer;
}
int iF=strFile.Find(“\r\n“);
while(iF!=-1)
{
m_saRead.Add(strFile.Left(iF));
strFile.Delete(0iF+2);
iF=strFile.Find(“\r\n“);
}
m_saRead.Add(strFile);
file.Close();
}
void RoyaWriteFile(CString strPath CString strWrite)
{
CFile file(strPathCFile::modeCreate|CFile::modeReadWrite);
file.WriteHuge(strWritestrWrite.GetLength());
file.Close();
}
bool JudgeFileExist(CString strPath)
{
try
{
CFile file;
file.Open(strPathCFile::modeRead);
CString strFile;
char buffer[10];
int iRead=file.Read(buffer10);
buffer[iRead]=0;
strFile+=buffer;
}
catch(CFileException* pe)
{
return false;
pe->ReportError();
}
return true;
}
bool RemoveFileExist(CString strPath)
{
try
{
CFile file;
// file.Open(strPathCFile::modeRead);
file.Remove(strPath);
}
catch(CFileException* pe)
{
return false;
pe->ReportError();
}
return true;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-06-16 21:22 上海大华电子秤接口\
文件 28672 2009-12-04 15:02 上海大华电子秤接口\DHDATASEND.dll
目录 0 2016-06-16 21:06 上海大华电子秤接口\DelPhiDemo\
文件 28672 2009-12-04 15:02 上海大华电子秤接口\DelPhiDemo\DHDATASEND.dll
文件 28672 2009-12-04 16:24 上海大华电子秤接口\DelPhiDemo\DhScalePluNet.dll
文件 27136 2007-04-09 15:31 上海大华电子秤接口\DelPhiDemo\DhScalePluNet.dll说明.doc
文件 40960 2007-04-09 14:41 上海大华电子秤接口\DelPhiDemo\DhSet.exe
文件 434 2007-04-09 16:27 上海大华电子秤接口\DelPhiDemo\Project1.cfg
文件 2014 2007-04-09 16:27 上海大华电子秤接口\DelPhiDemo\Project1.dof
文件 188 2007-04-09 16:27 上海大华电子秤接口\DelPhiDemo\Project1.dpr
文件 393216 2007-04-09 17:06 上海大华电子秤接口\DelPhiDemo\Project1.exe
文件 876 2007-04-09 16:25 上海大华电子秤接口\DelPhiDemo\Project1.res
文件 26 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\Rec.txt
文件 16 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\Return.txt
文件 3865 2007-04-09 17:05 上海大华电子秤接口\DelPhiDemo\Unit1.dcu
文件 51 2007-04-09 17:06 上海大华电子秤接口\DelPhiDemo\Unit1.ddp
文件 352 2007-04-09 17:06 上海大华电子秤接口\DelPhiDemo\Unit1.dfm
文件 648 2007-04-09 17:05 上海大华电子秤接口\DelPhiDemo\Unit1.pas
文件 51 2007-04-09 17:05 上海大华电子秤接口\DelPhiDemo\Unit1.~ddp
文件 352 2007-04-09 16:31 上海大华电子秤接口\DelPhiDemo\Unit1.~dfm
文件 648 2007-04-09 17:05 上海大华电子秤接口\DelPhiDemo\Unit1.~pas
文件 1014 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\dhbz5obj.txt
文件 1029 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\dhbz6obj.txt
文件 173 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\dhip.ini
文件 36864 2007-04-09 14:49 上海大华电子秤接口\DelPhiDemo\dhplunet.dll
文件 123 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\dhplupathname.ini
文件 163 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\dhpluversion.ini
文件 1719 2007-05-23 09:36 上海大华电子秤接口\DelPhiDemo\dhtma07obj.txt
文件 28672 2009-12-18 09:52 上海大华电子秤接口\DhScalePluNet.dll
文件 7596 2009-12-04 16:38 上海大华电子秤接口\DhScalePluNet.dll说明.doc
文件 40960 2007-04-09 14:41 上海大华电子秤接口\DhSet.exe
............此处省略77个文件信息
评论
共有 条评论