Are there any open source libraries for parsing junit xml using java and getting information like the name of testuite that are running, test cells matching testuite, number of failures and number of successful results? I just saw a junit style report tool to see if there are open source libraries to get this information in java.
You can use the junitreport task from ant to generate some report files that display the necessary information. Also check out the JUnit Custom Report question ? on how to customize the generated report for your needs.