Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
Is there an existing application or library in Java which will allow me to convert a CSV data file to XML file?
The XML tags would be provided through possibly the first row containing column headings.
Maybe this might help: JSefa
You can read CSV file with this tool and serialize it to XML.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
i want to know any apis that can copy and replace folders along with its contents.I know about apache commons, but that copies into the destination folder, it doesnt delete the destination folders extra contents
can be done with standard java
https://docs.oracle.com/javase/8/docs/api/java/nio/file/Files.html
this solution is available from 1.7 onwards
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I need to convert XML file to PDF using Java, is there any decent alternative to XSLT / anything to make the process of creating XSLT file less excruciating?.
Is there any way to get "live preview" instead of generating the file every time to check my changes?
ApacheFOP could be of help! Check this out
Nimbus is a free to use XSL designer based on html and css.
It allows you to create XSL for XSL FO applications.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
does anyone happen to know a Java-library capable of parsing CAMT.05x (espacially .053) XML files which are used by European Banks for SEPA transfers?
Google won't really help me here...
I could find the XSD for CAMT.053 in
here and here
If you have the xsd, you should be able to generate classes using XJC and then unmarshal the xml.
or am I missing something?
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I downloaded a mailing list archive from SourceForge. Mailing lists are each automatically archived to a mbox file. So now I need to extract the body from mbox file using Java. Is there a mailbox parser in Java?
Thanks
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Is there some Java library for converting .svg to .png or .jpg at code ? Does anybody have experience with this ?
Check out Batik, which has an Apache license.
Specifically, you should take a look at the Batik Rasterizer.
Here are the associated JavaDocs for manipulating it at the code level:
http://xmlgraphics.apache.org/batik/javadoc/
http://xmlgraphics.apache.org/batik/javadoc/org/apache/batik/apps/rasterizer/package-frame.html