我想读取一个 XML 文件并修改一些字符串,保存然后用 MATLAB 关闭文件。到目前为止,我有:
f = fopen( 'output_results\results.xml', 'w' );
我需要optList
在文件的节点内添加以下行(见下文):
<opt name="*_option1">true</opt>
<opt name="format">
<f1>file:/C:/working/types.h</f1>
</opt>
保存然后关闭文件
fclose(f);
如何在 XML 文件中添加上述行?
文件内容:
<?xml version="1.0" encoding="utf-8"?>
<Custom_project name="" val="True" name="file1" path="file:/C:/Users/Local/Temp/info.xml" version="1.0">
<verif="true" name="values" path="file:/C:/Users/Temp/folder1">
<optList name="values">
<opt name="color">red</opt>
<opt name="police">calibri</opt>
<opt name="font">blue</opt>
</optList>
</verif>
<toto="myvalue" name="option1">
<opt name="myvalue_1">32</opt>
<opt name="-total">All</opt>
<opt name="characteristic">hybrid</opt>
</toto>