1
vote
Physical Address in JAVA
As of Java 6, java.net.NetworkInterface class now has the method getHardwareAddress()
…
3
votes
Would it be useful to have method return values for null objects?
It is nice to not have to check for NULL, and some languages make it easier -- e.g. C#'s non-NULLable types, or Haskell which doesn't have NULLs but can express a missing value with the Maybe type …
-1
votes
How do you handle developer individual files under version control?
Don't keep them under version control, and use your tool's ignore ability to keep them from being accidentally checked in. Instead, version a script that generates them, which can use version-cont …
0
votes
Should try…catch go inside or outside a loop?
The whole point of exceptions is to encourage the first style: letting the error handling be consolidated and handled once, not immediately at every possible error site.
…
0
votes
Looking for a “Universal” Document viewer implemented as a Java Applet or with a Java SDK.
It's not a plugin, but multivalent is a java library and browser for a large number of document formats, but probably not all the on …
0
votes
Workaround for J2ME Hessian limitations ?
This is somewhat confusing as a Hessian is a matrix of mixed second partial derivatives, and a library that couldn't handle complex numbers would indeed be a problem.
Why'd they have to reu …
2
votes
Is there a platform independent way (Java?) to read an audio CD’s TOC?
Sorry, you're out of luck. You'll need JNI, and it'll be obnoxiously different for different platforms. The base java libraries cover tasks and hardware that are pretty much universal. CD drives …
