I have the java class in which i have provided the input xml and input xsl file locations as below as I have kept the input xml amd xsl in my project directory itself as shown below..
//String xmlInput="C:\\InputXml\\SW.xml";
String xmlInput="/trunk/config/testxml/SW.XML";
//String xslInput= "C:\\InputXml\\S.xsl";
String xslInput= "/trunk/config/xmltransform/SD.xsl";
FileInputStream xml = new FileInputStream(xmlInput);
FileInputStream xsl = new FileInputStream(xslInput);
as you can see please ignore the commented code as earlier i was reading the files from my C: of computer but now I have kept these files in my project itself now i am getting file not found exception please advise how to overcome from this