devxlogo

Create a “Current Date” Extension Element for Xalan

This tip is just a small application that creates an extension element for the Xalan processor. The name of the new element is &lttoday&gt and it can be used to access the current date. After the application code, there’s a small XSL stylesheet that uses this element.

//Java codepackage xslt.extension.myelement;import java.util.Calendar;public class MyExtension{   public String today(org.apache.xalan.extensions.XSLProcessorContext XSLPC,    org.apache.xalan.templates.ElemExtensionCall EEC)    {    String[] luni={"January","February","March",                    "April","May","June","July","August",                   "September","October","November","December"};          Calendar C=Calendar.getInstance();    String luna=luni[C.get(Calendar.MONTH)];    String data=String.valueOf(C.get(Calendar.DATE));    String an=String.valueOf(C.get(Calendar.YEAR));          return (data+"."+luna+"."+an);    }      }//XSL stylesheet<?xml version="1.0" encoding="UTF-8"?>           	        		         	 			                        Today:      	        

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

See also  Five Early Architecture Decisions That Quietly Get Expensive

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.