xmlデータに1つ以上のスタイルシートを適用できるようにしたい。私はこのコードを持っていて、単一のxmlデータにできるだけ多くのスタイルシートを適用して結果をGUIのテキスト領域に印刷できるように(settext()は文字列のみを受け入れると想定しているため)、どのように変更できるのか疑問に思っています。同時にファイルに保存されます。これらは私のコードです..ありがとう
/**
* Constructor for objects of class Simple
*/
public Simple(String xmlFile, String xslFile,String outputFile)
{
this.xmlFile = xmlFile;
this.xslFile = xslFile;
this.outputFile= outputFile;
}
public String SimpleTransform() throws
TransformerException,TransformerConfigurationException,FileNotFoundException,
IOException
{String mystring = "";
TransformerFactory tFactory = TransformerFactory.newInstance();
Transformer transformer = tFactory.newTransformer(new StreamSource(xslFile));
transformer.transform(new StreamSource(xmlFile), new StreamResult(new
FileOutputStream(outputFile)));
return mystring = "***The result is in birds.out *****";
}
}