HALCON文本文件的写入

*文件保存路径
file_name:='./学生信息.txt'
*判断文件是否存在:1:存在;0:不存在
file_exists (file_name, file_exist)
if(file_exist==1) //文件存在
    delete_file (file_name) //删除文件重新写入 
endif

file_exists (file_name, file_exist)
*若文件不存在,则创建一个含有表头信息的新文件
if(file_exist==0)  
    *'output':将打开一个新的输出文件,以便以ASCII格式写入。
    open_file (file_name, 'output', FileHand)
    *将字符串或数字写入文件中
    fwrite_string (FileHand, '   姓名\t')
    fwrite_string (FileHand, '   班级\t')
    fwrite_string (FileHand, '   电话\t')
    *清空输出缓冲区并写入换行符
    fnew_line (FileHand)
    *关闭文件
    close_file (FileHand)
endif

file_exists (file_name, file_exist)
*若文件存在,则将数据写入到文件中
if (file_exist==1) 
    *'append':将已存在的输出文件在文件末尾打开,以便以ASCII格式追加写入。
    open_file (file_name, 'append', FileHand)
    * 第n行第一列写入relative_mileage
    fwrite_string (FileHand, '林晓霞'+'\t')
    fwrite_string (FileHand, '七(1)班'+'\t')
    fwrite_string (FileHand, '02156899'+'\t')
    *清空输出缓冲区并写入换行符
    fnew_line (FileHand)
    *关闭文件
    close_file (FileHand)
endif

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值