Java News from Wednesday, February 4, 2004

I'm looking for a program, and I'm willing to pay for it. This program meeds to do one thing, and it doesn't even have to do it perfectly, but it has to do it well. I need an analog ripper which will record audio off my large collection of legacy cassete tapes. The criteria are as follows:

In other words, I want to do the minimum amount of work needed to rip my analog music collection onto disc. I should be able to plug the cassette player into the computer's microphone port, push one button on the cassette player, and one button in the program, and have everything else happen automatically. I'd pay up to $100 for this without thinking about it. I'd probably pay $200. $500 I might have to justify to my wife. Does anyone know if such a program exists? Drop me a line if you do.


The winlaf project has released Windows Look and Feel Fidelity (winlaf) 0.4. This set of utilities attempts to work around consistency issues in the Swing Windows Look & Feel. It's published under the Sun Public License.


Tom Copeland has released PMD 1.5, an open source tool for automatically checking Java code for various classes of bugs. PMD scans Java source code and looks for potential problems including:

Version 1.5 adds checks for about a doze potential new problems, including

In my tests, PMD 1.5 found a few minor problems in the XOM code base (unused local variables, mostly, plus a few unnecessary assignments of null to object variables) but didn't turn up anything too major. This isn't necessarily a fair test, because XOM has been repeatedly checked with earlier versions of PMD as well as other similar tools, so most of the easy problems were found and fixed long ago. For a fairer test, I ran several of the rulesets across the XQuisitor code base. PMD didn't catch any problems at all in that code, which was a little surprising. XQuisitor is much smaller and simpler than XOM, but I didn't think the code was in such good shape.


IBM has released version 1.19 of Jikes, their open source Java compiler written in C. Vertsion 1.19 adds warnings for common problems such as empty catch blocks. This is a bug fix release. Jikes is published under the IBM Public License.


Robert Oloffson has posted version 0.39 of Java Memory Profiler (JMP). JMP uses the Java Virtual Machine Profiling Interface (JVMPI) interface to track objects and method times in a JVM. It uses a GTK+ interface to display statistics. The current instance count and the total amount of memory for each class is shown as is the total time spent in each method. This release lets you dump all the strings in memory and fixes a few bugs. JMP is written in C for Linux.