Search Results

0
votes

Java Documentation

The Java language specification is a fairly dry, but useful resource. …
0
votes

How does the Java for each loop work?

Here's an equivalent expression. for(Iterator<String> sit = someList.iterator(); sit.hasNext(); ) { System.out.println(sit.next()); } …
2
votes

Most common cause of “java.lang.NullPointerException” when dealing with XMLs?

My first guess would be that the DOM-using code is treating elements that are marked as optional in the DTD as compulsory. Edited to add: What I mean is that unless you validate against a D …
1
vote

Java Serialization with non serializable parts

You can start by looking into the transient keyword, which marks fields as not part of the persistent state of an object. …
0
votes

When to use Hibernate/JPA/Toplink?

Do you mean plain old JDBC? A small project might be a good opportunity to pick up one of the ORM frameworks, especially if you have the time. Without more information it's hard to provide …
7
votes

Why is the Java main method static?

If it wasn't, which constructor should be used if there are more than one? There is more information on the initialization and execution of Java programs available in the …
2
votes

How good is FreeBSD as a development platform?

You can either run the native Java 1.6 port or the Linux JDK from Sun in Linux emulation mode, both are available in the ports tree. I use …