Like last year, JavaOne and Oracle Develop 2012 was organized and HICC on 3rd and 4th May 2012.The last time I attended such session was Tech Days when Oracle had just acquired Sun Miscrosystems. It was a two day program. This time the event was even larger. In fact all of the floors of HICC …
Category Archive: JAVA
Oct 16
SiliconIndia Java Conference India
Today I spoke on creating RESTful webservice using JAX-RS at SiliconIndia JAVA conference held at Green park Hotel Hyderabad. It was great to see the professional audience and top people from the Industry like Lalit Balchandani, Jay Pullur , Shastry Kuppa and Ashish Sarin speaking about JAX-WS, Spring Rooand Agile project management. There were also …
Mar 08
Converting DOM object to String
Here is a piece of code to convert org.w3c.dom.Document object to string Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty(OutputKeys.INDENT, “yes”); StreamResult result = new StreamResult(new StringWriter()); DOMSource source = new DOMSource(doc); transformer.transform(source, result); String xmlString = result.getWriter().toString(); Following needs to be in the import import javax.xml.transform.OutputKeys; import javax.xml.transform.Transformer; import javax.xml.transform.TransformerFactory; import javax.xml.transform.dom.DOMSource; import javax.xml.transform.stream.StreamResult;
Mar 25
Tech Days 2010
Tech Days 2010 is an annual event from Oracle that have raised the bar on technology. With exclusive previews of “what’s next,” the conferences have provided insights, information, and expertise to developers around the world. At Tech Days 2010, we heard hear from the brightest minds as they share cutting-edge technologies and ideas that can …