主题:加分~~怎样使中文写入外部文件
最近在编一个文字编辑器,但当我用:
assign(output,'chinese.out');
reset(output);
ch:='中国';
write(ch);
程序却无法通过,机器显示:program d:\my webs\fp\bin\go32v2\aa.exe
exited with
exitcode =105
tp中是error 105:file not open for output
这该怎么办?
assign(output,'chinese.out');
reset(output);
ch:='中国';
write(ch);
程序却无法通过,机器显示:program d:\my webs\fp\bin\go32v2\aa.exe
exited with
exitcode =105
tp中是error 105:file not open for output
这该怎么办?