五月天婷亚洲天久久综合网,婷婷丁香五月激情亚洲综合,久久男人精品女人,麻豆91在线播放

  • <center id="8gusu"></center><rt id="8gusu"></rt>
    <menu id="8gusu"><small id="8gusu"></small></menu>
  • <dd id="8gusu"><s id="8gusu"></s></dd>
    樓主: qiusuo123
    649 0

    SpringBoot短視頻小程序開發(fā)全棧式實(shí)戰(zhàn)項(xiàng)目 [推廣有獎(jiǎng)]

    • 0關(guān)注
    • 0粉絲

    本科生

    41%

    還不是VIP/貴賓

    -

    威望
    0 級(jí)
    論壇幣
    0 個(gè)
    通用積分
    0.1994
    學(xué)術(shù)水平
    0 點(diǎn)
    熱心指數(shù)
    0 點(diǎn)
    信用等級(jí)
    0 點(diǎn)
    經(jīng)驗(yàn)
    498 點(diǎn)
    帖子
    62
    精華
    0
    在線時(shí)間
    23 小時(shí)
    注冊(cè)時(shí)間
    2021-3-6
    最后登錄
    2021-10-13

    樓主
    qiusuo123 發(fā)表于 2021-7-30 14:14:38 |只看作者 |壇友微信交流群|倒序 |AI寫論文

    +2 論壇幣
    k人 參與回答

    經(jīng)管之家送您一份

    應(yīng)屆畢業(yè)生專屬福利!

    求職就業(yè)群
    趙安豆老師微信:zhaoandou666

    經(jīng)管之家聯(lián)合CDA

    送您一個(gè)全額獎(jiǎng)學(xué)金名額~ !

    感謝您參與論壇問題回答

    經(jīng)管之家送您兩個(gè)論壇幣!

    +2 論壇幣
    ## SpringBoot短視頻小程序開發(fā)全棧式實(shí)戰(zhàn)項(xiàng)目


    超清原畫 完整無(wú)密 網(wǎng)盤分享   地址看評(píng)論
    需要引用下面的命名空間:

    1


    2


    using System.Xml;  
    using System.Xml.Xsl;



    方法實(shí)現(xiàn):

    1


    2


    3


    4


    5


    6


    7


    8


    9


    public static string ConvertXML(XmlDocument InputXMLDocument, string XSLTFilePath  
    , XsltArgumentList XSLTArgs)  
    {  
       System.IO.StringWriter sw = new System.IO.StringWriter();  
       XslCompiledTransform xslTrans = new XslCompiledTransform();  
       xslTrans.Load(XSLTFilePath);  
       xslTrans.Transform(InputXMLDocument.CreateNavigator(), XSLTArgs, sw);  
       return sw.ToString();  
    }



    示例xml文件如下:

    1


    2


    3


    4


    5


    6


    7


    8


    9


    10


    11


    12


    <?xml version="1.0" encoding="utf-8" ?>
    <sexystars>
      <category name="Bollywood">
        <sexystar name="Antra mali" />
        <sexystar name="Deepika Padukone" />
        <sexystar name="Mandira Bedi" />
      </category>
      <category name="Hollywood">
        <sexystar name="Jennifer Lopez" />
        <sexystar name="Jessica Alba" />
      </category>
    </sexystars>



    示例xslt文件如下:

    1


    2


    3


    4


    5


    6


    7


    8


    9


    10


    11


    12


    13


    14


    15


    16


    17


    18


    19


    20


    21


    22


    <?xml version="1.0" encoding="UTF-8" ?>
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output omit-xml-declaration="yes"/>
      <xsl:template match="sexystars">
        <div>
          <xsl:apply-templates select="category" />
        </div>
      </xsl:template>
      <xsl:template match="category">
        <h2>
          <xsl:value-of select="@name"/>
        </h2>
        <ul>
          <xsl:apply-templates select="sexystar" />
        </ul>
      </xsl:template>
      <xsl:template match="sexystar">
        <li>
          <xsl:value-of select="@name"/>
        </li>
      </xsl:template>
    </xsl:stylesheet>



    調(diào)用的c#代碼:

    1


    2


    3


    XmlDocument xDoc=new XmlDocument();  
    xDoc.Load(@"C:\sample.xml");  
    string returnhtml = ConvertXML(xDoc, @"C:\sample.xslt", new XsltArgumentList());



    將輸入如下html:

    1


    2


    3


    4


    5


    6


    7


    8


    9


    10


    11


    12


    13


    <div>
    <h2>Bollywood</h2>
      <ul>
        <li>Antra mali</li>
        <li>Deepika Padukone</li>
        <li>Mandira Bedi</li>
      </ul>
    <h2>Hollywood</h2>
      <ul>
        <li>Jennifer Lopez</li>
        <li>Jessica Alba</li>
      </ul>
    </div>




    二維碼

    掃碼加我 拉你入群

    請(qǐng)注明:姓名-公司-職位

    以便審核進(jìn)群資格,未注明則拒絕

    關(guān)鍵詞:Spring Pring 程序開發(fā) RING boot

    本版微信群
    JingGuan2026
    拉您進(jìn)交流群

    京ICP備16021002-2號(hào) 京B2-20170662號(hào) 京公網(wǎng)安備 11010802022788號(hào) 論壇法律顧問:王進(jìn)律師 知識(shí)產(chǎn)權(quán)保護(hù)聲明   免責(zé)及隱私聲明

    GMT+8, 2025-1-1 13:28