Archive for June, 2008
Visual Studio 2008, new looks, new features and probably with new bugs too. Well I got hit by one, by the first time itself as I started this damn Microsoft product. I installed Visual Studio 2008 with C# and C++ feature. I was able to create C# based projects but not C++ based ones. It [...]
Filed under: Visual Studio | 23 Comments
Tags: Project creation failed, Visual Studio 2008, VSWizard.VsWizardEngine.9.0
Parsing XML in Java using SAX
23Jun08
In my previous post, I presented a DOM based example. In this one, I am explaining the SAX version.
The Simple API for XML (SAX) is a serial access parser API for XML. SAX provides a mechanism for reading data from an XML document. It is a popular alternative to the Document Object Model (DOM).
SAX parsers [...]
Filed under: Java | 17 Comments
Tags: DOM, Java, Simple API for XML (SAX), XML