emilybose 0 Newbie Poster

Hi,
I want to read an xml file thru java..all examples in google r of same type....

my xml file shows

<?xml version="1.0" encoding="UTF-8" ?>
- <checkstyle version="5.3">
- <file name="C:\Checkstyle\Junit\LLU.java">
<error line="2" column="8" severity="error" message="Unused import - java.io.FileWriter." source="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck" />
<error line="3" column="8" severity="error" message="Unused import - java.io.IOException." source="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck" />
<error line="7" column="8" severity="error" message="Unused import - java.util.Hashtable." source="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck" />
<error line="8" column="8" severity="error" message="Unused import - java.util.Random." source="com.puppycrawl.tools.checkstyle.checks.imports.UnusedImportsCheck" />
</file>
</checkstyle>


I need to pick the values of all error line,column,severity,message,source and put it into a database table.

How do I do this??

Its better if anyone can provide me a piece of code..I m completely new to java...


Thanks in advance :)

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.