|
3#
楼主 |
发表于 2005-3-21 22:29:05
|
只看该作者
人还是要逼一逼的,我总算琢磨出来了,天哪~!虽然还有一点问题不懂,但是大致还事搞清楚了。
现在放在我眼前还有几个问题,希望可以得到帮助,谢谢
1、如何放到指定的目录下,而不是Project默认的目录
2、fseek和fscanf是什么命令,我至今搞不懂
3、如何在robot脚本debug
以下是可以运行的脚本
#include <VU.h>
#define _PV_FILEIO_NOWRAP 1
#define _PV_FILEIO_FIELD ","
#include <sme/fileio.h>
#define IDX_STUDENT 1 /* STUDENT is 1st field */
#define IDX_CLASS 2 /* CLASS is 2nd field */
{
//初始化
string theline;
string data_file;
data_file="data_20050321.txt";
theline="xyz";
//写日志
file1=open(data_file,"a");
fprintf(file1, "%s,",theline);
fprintf(file1, "cccddd", &theline);
close(file1);
//读日志文件
file1=open(data_file,"r");
while (ReadLine(file1) != -1)
{
print IndexedField(IDX_STUDENT);
print IndexedField(IDX_CLASS);
}
close(file1);
} |
|