如何通过编码 UTF-8 将文本写入文件?

How write text to File by Encode UTF-8?

我的代码将文本写入 Adob​​e Script (.jsx) 文件:

 var xml=  " 小塚ゴシック Pro"

  var file = new File(output);
  file.open("w");   
  file.write(xml);
  file.close();

但结果编码UTF-8无法显示:ϬӋēĖĢĎ Pro 它只能显示文本 " 小塚ゴシック Pro" ,如果文件的设置编码是 Shift-JIS.

如何通过编码 UTF-8 将文本写入文件?

试试这个:

file.encoding = "UTF-8";

here是样本,供参考。