0

我将一些数据写入 XML 文件:

   [FileName,PathName] = uiputfile('*.xml','Select the XML file');
   if length(FileName) > 3
        completePath = [PathName FileName];
        % Create the DOM-Object
        docNode = com.mathworks.xml.XMLUtils.createDocument('docRootNode');
        docRootNode = docNode.getDocumentElement;
        docRootNode.setAttribute('version','2.0');
        mElement = docNode.createElement('Data1'); 
        docRootNode.appendChild(mElement)
        fields = fieldnames(struct1);
        for i = 1:numel(fields)
            thisElement = docNode.createElement(fields{i});
            thisElement.appendChild... 
            (docNode.createTextNode(struct1.(fields{i}))); %NO ERROR
            mElement.appendChild(thisElement);
        end
        rElement = docNode.createElement('Data2'); 
        docRootNode.appendChild(rElement)
        fields = fieldnames(struct2);
        for i = 1:numel(fields)
            thisElement = docNode.createElement(fields{i});
            thisElement.appendChild... 
            (docNode.createTextNode(struct2.(fields{i}))); %ERROR
            rElement.appendChild(thisElement); 
        end
    xmlwrite(completePath, docNode);
    end

上周它运行没有任何问题,但从今天开始,我在%ERROR运行我的代码标记的行中收到此错误:

没有为类“org.apache.xerces.dom.DocumentImpl”找到具有匹配签名的方法“createTextNode”。

我在互联网上没有找到任何解决方案(问题可能是我不是 PC 上的管理员)。
我也不明白,为什么上半部分没有错误(%NO ERROR

4

1 回答 1

0

我的问题在 MATLAB 的支持下得到了解决:
我的程序中唯一的问题是,它struct2包含整数值。
struct1只包含字符串值,所以没有问题。
num2str现在用来转换数值并且没有问题了;)。

于 2016-02-02T10:05:43.530 回答