我有一个包含“unix 风格”行尾的文本文件:每行末尾都有一个 0x0A。
我正在编写一个脚本来修改该文件,向其中添加新内容。这是在 Windows 上运行的 JScript。代码如下所示:
var fso = new ActiveXObject("Scripting.FileSystemObject"),
fs = fso.openTextFile(src),
origContent = fs.readAll();
fs.Close();
fso.MoveFile(src, dest);
// write updated content to a new file.
fs = fso.CreateTextFile(src);
fs.WriteLine("# key: " + keyvaluee);
fs.WriteLine("# group: " + groupvalue);
fs.WriteLine(origContent);
fs.Close();
修改后的文件内容如下:
00000000: 2320 6b65 793a 2075 6e64 6566 696e 6564 # key: undefined
00000010: 0d0a 2320 6772 6f75 703a 2069 6d61 700d ..# group: imap.
00000020: 0a23 636f 6e74 7269 6275 746f 7220 3a20 .#contributor :
00000030: 416e 6472 6577 2047 776f 7a64 7a69 6577 Andrew Gwozdziew
00000040: 7963 7a20 3c77 6562 4061 7067 776f 7a2e ycz <web@apgwoz.
00000050: 636f 6d3e 0a23 6e61 6d65 203a 2069 6d61 com>.#name : ima
00000060: 705f 6765 745f 7175 6f74 6172 6f6f 7428 p_get_quotaroot(
00000070: 2e2e 2e2c 202e 2e2e 290a 2320 2d2d 0a69 ..., ...).# --.i
00000080: 6d61 705f 6765 745f 7175 6f74 6172 6f6f map_get_quotaroo
00000090: 7428 247b 696d 6170 5f73 7472 6561 6d7d t(${imap_stream}
000000a0: 2c20 247b 7175 6f74 615f 726f 6f74 7d29 , ${quota_root})
000000b0: 2430 0d0a $0..
如您所见,使用 JScript TextStream 添加的行以 结尾0D 0A
,而现有内容的每一行都以0A
. 查看位置 0x10 的序列并与位置 0x54 的字节进行比较。这是一个文本文件,我只是以十六进制显示内容。
如何使修改后的文件中的行尾一致?无论哪种方式对我来说都很好,我只是不喜欢在同一个文件中使用两者。
我可以将origContent
内存中的字符串转换为使用“DOS 样式”行尾吗?