This subsection describes the flow of basic coding that uses the Shift_JIS switch function in the XSLT transformer. The follow shows an example of the coding:
![[Figure]](figure/zu040j00.gif)
The following describes the coding example. Each item number corresponds to the number in the comments in the coding example.
- Create TransformerFactory.
Use the static method newInstance() of javax.xml.transform.TransformerFactory to create the factory.
- Switch Shift_JIS to MS932.
In the setAttribute method for the XSLT transformer factory setting, specify the first argument to the setting key http://cosminexus.com/xml/properties/shift_jis_map and the second argument to MS932.
- Create Transformer.
Use the newTransformer() method to create a transformer.