如何在 extendscript 中将新元素添加到现有 XML 文件中?

How to add new elementes into an existing XML file in extendscript?

我正在编写一个脚本,使用 After Effects 将一些 xml 数据更新到现有文件中,并且 Extendscript.I 正在尝试将新元素添加到现有 file.I 中代码:

 function writeXml (xml) 
 { 
     var file = new File(filePath);
     if (!(xml instanceof XML)) 
     { 
        throw "Bad XML parameter"; 
     } 
     file.encoding = "UTF8"; 
     file.open("e");  
     file.write("\uFEFF"); 
     file.lineFeed = "windows"; 
     file.write(xml.toXMLString()); 
     file.close();
 }

但是此代码用新元素替换了文档中的所有文本,因此我尝试使用 xml 注释(如 'marker')在其下方插入元素。这是 xml:

<Root>
<child name="ChildOne"/>
<child name="ChildTwo"/>
<!---->
</Root>

代码:

function writeXml (xml) 
{ 
     var file = new File(filePath);
     var fileOk = file.open("e"); 
     var strLine, line, docPos;

     if (!(xml instanceof XML)) 
     { 
        throw "Bad XML parameter"; 
     } 

     if (!fileOk)
     {
         throw "Cant open file";
     }

     file.encoding = "UTF8"; 

     while (!file.eof)
     {
         strLine = file.readln();
         docPos= strLine.search("<!---->");
         if (docPos!= -1)
         {
             file.seek(0, 1);
             file.writeln("<!----> \n");
             break;
         }  
     }
     file.close(); 
}

此代码在正确的位置写入了 elmemnt,但它从下一行删除了一些字符,如下所示:

<Root>
<child name="ChildOne" />
<child name="ChildTwo" />
<!---->
<child name="ChildThree">
ot> 

我的问题是:为什么会这样?有没有合适的方法来实现这一目标? 谢谢。

我找到了一个解决方案,它看起来很丑但很有效:

function writeXml (xml) 
{ 
     var file = new File(filePath);
     var fileOk = file.open("e"); 
     var strLine, line, docPos, marker;
     marker = "<!---->";

     if (!(xml instanceof XML)) 
     { 
        throw "Bad XML parameter"; 
     } 

     if (!fileOk)
     {
         throw "Cant open file";
     }


     while (!file.eof)
     {
         strLine = file.readln();
         docPos= strLine.search(marker);
         if (docPos!= -1)
         {
             file.seek( (-marker.length - 2), 1);
             file.writeln(xml + "\n" + marker + "\n</Root>");
             break;
         }  
     }
 file.close(); 
}

Why is this happening?

您正在尝试向现有文件中插入一行 seekwriteln。不幸的是,这根本不是文件的工作原理。您不能插入单个 字节 - 更不用说整行了。

Is there a proper way to achieve this?

是的,有多种方法。

例如:打开这个文件进行读取,打开一个新文件进行写入。从此文件中逐行读取并将其写入新文件。如果遇到标记,请插入新行。完成后,删除旧文件并重命名新文件。