0

I need to transform xml (to html using xslt) file which I made by downloading a dataset from oracle sqldeveloper HR schema! Please help me to write xsl file which will transform the downloaded data into a table!

Piece of xml

<?xml version='1.0' encoding='UTF8'?>
<RESULTS>
  <ROW>
    <COLUMN NAME="Employee_Names"><![CDATA[Steven]]></COLUMN>
    <COLUMN NAME="Salary"><![CDATA[24000]]></COLUMN>
    <COLUMN NAME="STREET_ADDRESS"><![CDATA[1297 Via Cola di Rie]]></COLUMN>
  </ROW>
  <ROW>
    <COLUMN NAME="Employee_Names"><![CDATA[Neena]]></COLUMN>
    <COLUMN NAME="Salary"><![CDATA[17000]]></COLUMN>
    <COLUMN NAME="STREET_ADDRESS"><![CDATA[1297 Via Cola di Rie]]></COLUMN>
  </ROW>

All my data displays in strings not table( please help

Database table

1 Answer 1

2
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

  <xsl:output method="xml" indent="yes"
      doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
      doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>

  <xsl:template match="/RESULTS">
    <html>
      <head>
        <title>Table data</title>
      </head>
      <body>
        <table>
          <thead>
            <!-- Extract the column-names from the first row. -->
            <xsl:apply-templates select="ROW[1]" mode="header"/>
          </thead>
          <tbody>
            <xsl:apply-templates select="ROW"/>
          </tbody>
        </table>
      </body>
    </html>
  </xsl:template>

  <!-- "header"-mode generates the column headers. -->
  <xsl:template match="ROW" mode="header">
    <tr>
      <xsl:apply-templates match="COLUMN" mode="header"/>
    </tr>
  </xsl:template>

  <xsl:template match="COLUMN" mode="header">
    <th>
      <xsl:value-of select="@NAME"/>
    </th>
  </xsl:template>

  <!-- normal mode generates the table data -->
  <xsl:template match="ROW">
    <tr>
      <xsl:apply-templates match="COLUMN"/>
    </tr>
  </xsl:template>

  <xsl:template match="COLUMN">
    <td>
      <xsl:value-of select="text()"/>
    </td>
  </xsl:template>

</xsl:stylesheet>

Output:

<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>Table data</title>
  </head>
  <body>
    <table>
      <thead>
        <tr>
          <th>Employee_Names</th>
          <th>Salary</th>
          <th>STREET_ADDRESS</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Steven</td>
          <td>24000</td>
          <td>1297 Via Cola di Rie</td>
        </tr>
        <tr>
          <td>Neena</td>
          <td>17000</td>
          <td>1297 Via Cola di Rie</td>
        </tr>
      </tbody>
    </table>
  </body>
</html>
Sign up to request clarification or add additional context in comments.

1 Comment

Thank you very much! You are the master of xsl)!

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.