少有人走的路

勇哥的工业自动化技术网站

halcon写数据到csv文件的方法

示例,将以下 两个元组分别写入表格中,元组a在第一行,元组b在第二行


a:= [1,2,3]

b:= [4,5,6]


 


1、读入文件,先判断是否存在,如果存在将内容清空


fileName:='E:/test.csv'

file_exists(fileName, FileExists)

if(FileExists)

   delete_file(fileName)

endif


*假如文件不存在,将重新创建一个新的


open_file (fileName, 'append', FileHandle)


 


2、将元组a、b中的内容按照顺序依次写入表中


for Index := 0 to |a|-1 by 1

    fwrite_string (FileHandle, a[Index] +',')

endfor


*换行

fwrite_string (FileHandle, '\n')  或者 fnew_line (FileHandle)

for Index := 0 to |b|-1 by 1

    fwrite_string (FileHandle, b[Index] +',')

endfor

close_file(FileHandle)



发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2025年11月    »
12
3456789
10111213141516
17181920212223
24252627282930
控制面板
您好,欢迎到访网站!
  查看权限
网站分类
搜索
最新留言
文章归档
网站收藏
友情链接

Powered By Z-BlogPHP 1.7.3

Copyright www.skcircle.com Rights Reserved.

鄂ICP备18008319号


站长QQ:496103864 微信:abc496103864