Retrieving hashmap values in XSLT
问题 I am executing an XSLT transformation using java program. Given below is the block of code that is used for transformation. Here I am creating a hashmap and setting a value which needs to be accessed in the XSLT. TransformerFactory factory = TransformerFactory.newInstance(); StreamSource xslStream = new StreamSource(inputXSL); Transformer transformer = factory.newTransformer(xslStream); Map<String,String> mapData = new HashMap<String,String>(); mapData.put("103", "188 E 6th Street");