一、输出linux/dos格式文件
用print写内容到文件,一般会自动加回车和换行符号,即dos格式,用vi打开就是显示为^M。
open ThisWorkbook.Path & "\my_file.txt" For Output As #1
print #1,"aaa"显示结果为…
报错原因
The file size (5.13MB) exceeds configured limit (5.12MB). Code insight features are not available.(文件大小超出了设定值,IDEA不再对这个文件的进行代码解析了) 与之而来的结果是:IDEA中其他文件对于这个文件的所有引用都会报错&#x…