Monday, November 22, 2010

PMD and CPD For Eclipse

PMD

From http://pmd.sourceforge.net/

PMD scans Java source code and looks for potential problems like:

  • Possible bugs - empty try/catch/finally/switch statements
  • Dead code - unused local variables, parameters and private methods
  • Suboptimal code - wasteful String/StringBuffer usage
  • Oercomplicated expressions - unnecessary if statements, for loops that could be while loops
  • Duplicate code - copied/pasted code means copied/pasted bugs

CPD

From http://pmd.sourceforge.net/cpd.html

Duplicate code can be hard to find, especially in a large project. But PMD's Copy/Paste Detector (CPD) can find it for you! CPD has been through three major incarnations:

  • First we wrote it using a variant of Michael Wise's Greedy String Tiling algorithm (our variant is described here)
  • Then it was completely rewritten by Brian Ewins using the Burrows-Wheeler transform
  • Finally, it was rewritten by Steve Hawkins to use the Karp-Rabin string matching algorithm

XmlToHtmlConverter

import java.io.FileOutputStream;

import javax.xml.transform.Result;
import javax.xml.transform.Source;
import javax.xml.transform.Transformer;
import javax.xml.transform.TransformerFactory;
import javax.xml.transform.stream.StreamSource;
import javax.xml.transform.stream.StreamResult;

public class XmlToHtmlConverter {

public static void main(String[] args) {
try {

String xmlFile = "src/xml/xml.xml";
String xsltFile = "src/xslt/xslt.xsl";
String outFile = "src/html/html.html";

Source xmlSource = new StreamSource(xmlFile);
Source xsltSource = new StreamSource(xsltFile);
Result ouput = new StreamResult(new FileOutputStream(outFile));

TransformerFactory tFactory = TransformerFactory.newInstance();
Transformer transformer = tFactory.newTransformer(xsltSource);
transformer.transform(xmlSource, ouput);

System.out.println("Html got generated");

} catch (Exception e) {
e.printStackTrace();
}
}
}


http://www.w3schools.com/xsl/tryxslt.asp?xmlfile=cdcatalog&xsltfile=cdcatalog

from this URL download the xml and xsl and try to give input to the above java file..

you will be getting the corresponding html.