Convert "Little-Endian" to "Big-Endian" 17 Apr 2007 21:11 GMTThis tip outlines two simple methods that help you to convert a number from the "little-endian" format to the "big-endian" format.
Source: DevX Embedded Integration Testing of Web Applications 12 Apr 2007 04:00 GMTTest first means, well, test first. But with web applications, there's a great deal of installation and configuration you have to do before you can even test. Couldn't that be slimmed down a bit, so developers can get testing sooner? Johannes Brodwall shows how to combine some popular pieces to create a simpler container for testing your web apps sooner.
Source: Java.net What's New in JDBC 4.0? 10 Apr 2007 04:00 GMTJava SE 6 offers a new version of the platform's database support: JDBC 4.0. Sharad Acharya shows off the new features, including simplified driver loading, better exception reporting and handling, support for more data types, and more.
Source: Java.net Controlling Threads by Example 06 Apr 2007 04:00 GMTThe methods people commonly think of for controlling threads were deprecated long ago, and are not safe to use. In this article, Viraj Shetty shows the appropriate techniques for starting, pausing, resuming, and stopping activities taking place in a multithreaded application.
Source: O'Reilly The Perils of Image.getScaledInstance() 03 Apr 2007 04:00 GMTLots of developers use the simple
Image.getScaledInstance() that's been around since Java 1.1, apparently not realizing that Java 2D provides better-looking, more performant, and more flexible options. Chris Campbell checks in with where image scaling is in Java SE 6 and what we might see in JDK 7.
Source: Java.net Schema Validation with JAXP or JDOM 03 Apr 2007 01:06 GMTSchema validation is one surefire way to maximize the data trasnferring capabilities of any XML document. Learn how to use two different schema validation APIs.
Source: JavaBoutique