zoukankan      html  css  js  c++  java
  • VC,VB操作XML

    TCHAR buffer[MAX_PATH] = {0};
     ::GetModuleFileName(NULL, buffer, MAX_PATH);
     CString strPath = buffer;
     int nIndex = strPath.ReverseFind(_T('\'));
     strPath = strPath.Left(nIndex + 1);
     CString strBomFile = strPath + _T("Bom.xml");
     
     MSXML2::IXMLDOMDocumentPtr pDocXML = NULL;
     MSXML2::IXMLDOMElementPtr pRoot = NULL;
     MSXML2::IXMLDOMElementPtr pNode = NULL;
     HRESULT hr = pDocXML.CreateInstance(__uuidof(MSXML2::DOMDocument));
     ASSERT(SUCCEEDED(hr));
     pRoot = pDocXML->createElement((_bstr_t)(_T("BomData")));
     pDocXML->appendChild(pRoot);
     //3-1、遍历BomRcdArr
     for(long i = 0;i<27;i++)
     {
     
      CString strFilePath = strBomFile;
         
      //write to xml
      short iNum=0;
      iNum=10;
      BSTR strKey;
      BSTR strValue;
      short ii=0;
     
     
     
      for (ii=0;ii<iNum;ii++)
      {
       strKey = L"KEY";
       strValue =L"VALUE";
       //pITHDbBomRecorder->GetItem(&strKey,&strValue,ii);
     
       pNode=NULL;
       pNode = pDocXML->createElement((_bstr_t)(_T("Node")));
       pNode->put_text((_bstr_t)_T("BomData"));//设置标签的文本内容;
           
       pNode->setAttribute((_bstr_t)_T("BomDataBigNum"),(_variant_t)i);
       pNode->setAttribute((_bstr_t)_T("BomDataSmallNum"),(_variant_t)ii);
       pNode->setAttribute((_bstr_t)_T("key"),(_variant_t)strKey);
       pNode->setAttribute((_bstr_t)_T("value"),(_variant_t)strValue);
     
       pRoot->appendChild(pNode);
     
      }
     
     }
     pDocXML->save( _bstr_t(strBomFile));
     pNode->Release();
     pRoot->Release();
     pDocXML->Release(); 
    Private Sub Command1_Click()
    Dim xDoc As Object
    Dim xmlFile As String
    Dim strWidth As String
    Dim strHeight As String
    Set xDoc = CreateObject("MSXML2.DOMDocument")
    xmlFile = "C:aa.xml"
    xDoc.Load xmlFile
    strWidth = xDoc.selectSingleNode("overlays").selectSingleNode("Info").Attributes(2).Text
    strHeight = xDoc.selectSingleNode("overlays").selectSingleNode("Info").Attributes(3).Text
    MsgBox ("Width=" & strWidth & " Height=" & strHeight)
    xDoc.selectSingleNode("overlays").selectSingleNode("Info").Attributes(2).Text = "123"
    xDoc.selectSingleNode("overlays").selectSingleNode("Info").Attributes(3).Text = "456"
    xDoc.save (xmlFile)
    End Sub
    
    注意 你上面的XML中Width="840"Height="630" 要分开,改成:
     Width="840" Height="630"
  • 相关阅读:
    蠢货之对闭包表的扩展
    蠢货之TaskCompletionSource 带事件的同步调用
    SQLSERVER新建存储过程模板
    缓存更新
    写给”源码爱好者“
    区块链-一个不神秘却总能骗人的东西
    graceful-upgrades-in-go
    谁也逃不过C++
    Go的问题
    面试
  • 原文地址:https://www.cnblogs.com/liaocheng/p/4243658.html
Copyright © 2011-2022 走看看