matlab生成xml文件代码示例

  1. tempname = 'myxml';  
  2.   
  3. docNode = com.mathworks.xml.XMLUtils.createDocument('obj')  
  4. docRootNode = docNode.getDocumentElement;  
  5. %docRootNode.setAttribute('attr_name','attr_value');  
  6.   
  7.     IDNode = docNode.createElement('ID');   
  8.     IDNode.appendChild(docNode.createTextNode(sprintf('%i',5)));  
  9.     docRootNode.appendChild(IDNode);  
  10.       
  11.     objNmNode = docNode.createElement('objNm');   
  12.     objNmNode.appendChild(docNode.createTextNode(sprintf('plane####################1008')));  
  13.     docRootNode.appendChild(objNmNode);  
  14.   
  15.   
  16.     thisElement = docNode.createElement('FDs');   
  17.     docRootNode.appendChild(thisElement);  
  18.       
  19.         dataNode = docNode.createElement('FD1');  
  20.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  21.         thisElement.appendChild(dataNode);  
  22.           
  23.         dataNode = docNode.createElement('FD2');  
  24.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  25.         thisElement.appendChild(dataNode);  
  26.           
  27.         dataNode = docNode.createElement('FD3');  
  28.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  29.         thisElement.appendChild(dataNode);  
  30.           
  31.         dataNode = docNode.createElement('FD4');  
  32.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  33.         thisElement.appendChild(dataNode);  
  34.           
  35.           
  36.           
  37.     thisElement = docNode.createElement('FD_Clusters');   
  38.     docRootNode.appendChild(thisElement);  
  39.       
  40.         dataNode = docNode.createElement('FD_Clusters1');  
  41.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  42.         thisElement.appendChild(dataNode);  
  43.           
  44.         dataNode = docNode.createElement('FD_Clusters2');  
  45.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  46.         thisElement.appendChild(dataNode);  
  47.           
  48.         dataNode = docNode.createElement('FD_Clusters3');  
  49.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  50.         thisElement.appendChild(dataNode);  
  51.           
  52.         dataNode = docNode.createElement('FD_Clusters4');  
  53.         dataNode.appendChild(docNode.createTextNode(sprintf('4 43 3 32 1 6 0 3 1 2   ')));  
  54.         thisElement.appendChild(dataNode);  
  55.           
  56.       
  57.     FD_histoNode = docNode.createElement('FD_histogram');   
  58.     FD_histoNode.appendChild(docNode.createTextNode(sprintf('17 10 8 5 3 2 1 ')));  
  59.     docRootNode.appendChild(FD_histoNode);  
  60.   
  61. docNode.appendChild(docNode.createComment('this is a comment'));  
  62.   
  63. xmlFileName = [tempname,'.xml'];  
  64. xmlwrite(xmlFileName,docNode);  
  65. type(xmlFileName);  
生产XML文件如下:

[html]  view plain  copy
  1.   xml version="1.0" encoding="utf-8" ?>  
  2. < obj >  
  3.   < ID > 5  ID >  
  4.   < objNm > plane####################1008  objNm >  
  5. < FDs >  
  6.   < FD1 > 4 43 3 32 1 6 0 3 1 2  FD1 >  
  7.   < FD2 > 4 43 3 32 1 6 0 3 1 2  FD2 >  
  8.   < FD3 > 4 43 3 32 1 6 0 3 1 2  FD3 >  
  9.   < FD4 > 4 43 3 32 1 6 0 3 1 2  FD4 >  
  10.    FDs >  
  11. < FD_Clusters >  
  12.   < FD_Clusters1 > 4 43 3 32 1 6 0 3 1 2  FD_Clusters1 >  
  13.   < FD_Clusters2 > 4 43 3 32 1 6 0 3 1 2  FD_Clusters2 >  
  14.   < FD_Clusters3 > 4 43 3 32 1 6 0 3 1 2  FD_Clusters3 >  
  15.   < FD_Clusters4 > 4 43 3 32 1 6 0 3 1 2  FD_Clusters4 >  
  16.    FD_Clusters >  
  17.   < FD_histogram > 17 10 8 5 3 2 1  FD_histogram >  
  18.    obj >  
  19.    


原文链接:地址

你可能感兴趣的:(matlab)