Results 1 to 1 of 1
Thread: XT XFLAT implementation in java
- 02-08-2011, 05:34 PM #1
Member
- Join Date
- Feb 2011
- Posts
- 2
- Rep Power
- 0
XT XFLAT implementation in java
hello everybody thanks for this great forum.
i have to convert flat file from on format to another with xflat.which i did it greatly but the problem that i have a complicated falt file and i have to use xflat and also XT jclark xslt to do my transformation.
i tried to find some documentation or examples about it but i found just a lots of method without explaining and one example :
this example it works fine but those method aren't enagh for me because with this example i can just transform to xml though i wloud to transform it to a flat file using XTFLATFILEBUILDER that is a method in xflat to convert the xml tree in flat file.Java Code:import java.io.IOException; import java.io.OutputStream; import java.io.FileOutputStream; import org.xml.sax.SAXException; import com.sun.xml.tree.XmlDocument; import com.jclark.xsl.dom.Transform; import com.jclark.xsl.dom.TransformEngine; import com.jclark.xsl.dom.TransformException; import com.jclark.xsl.dom.XSLTransformEngine; class testxflat { public static void main(String[] args) throws IOException, SAXException, TransformException { XmlDocument XMLdoc = new XmlDocument().createXmlDocument("File:///C:/test.xml"); XmlDocument XSLdoc = new XmlDocument().createXmlDocument("File:///C:/testatwxt.xsl"); XmlDocument newdoc = new XmlDocument(); XSLTransformEngine transformEngine = new XSLTransformEngine(); Transform transform = transformEngine.createTransform(XSLdoc); transform.transform(XMLdoc, newdoc); OutputStream out = new FileOutputStream("C:\\test200.txt"); newdoc.write(out); out.close(); } }
bref if anyone works with XT jclark in java that he gives me a help .
Similar Threads
-
java generics implementation
By sardare in forum Advanced JavaReplies: 1Last Post: 01-14-2010, 01:51 AM -
Java Telnet App Implementation
By mgdesmond13 in forum New To JavaReplies: 1Last Post: 07-28-2008, 01:58 AM -
Binary Tree Implementation in Java
By Java Tip in forum java.langReplies: 0Last Post: 04-16-2008, 10:35 PM -
Soundex Algorithm Implementation in Java
By Java Tip in forum java.langReplies: 0Last Post: 04-12-2008, 08:40 PM -
Java Telnet App Implementation
By mgdesmond13 in forum Java AppletsReplies: 0Last Post: 12-26-2007, 03:15 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks