4
votes
Java String Parameters
First off I probably wouldn’t have these requirements. I’m sure they can be worked around. If you don’t want to do that, I’d recommend returning a container object for your two results:
…
2
votes
Produce a simple Video - uncompressed, frame by frame
Depending on the program you want to use to further process your movie you can also simply create PNGs (or TGAs or BMPs) for the single frames. VirtualDub e.g. can use images as frames for a movie. …
2
votes
6
votes
Why is January month 0 in Java Calendar ?
More important: if months are counted from 0 (and they are), why are days counted from 1?
…
2
votes
deadlock on synchronized ( String intern())
Quite. The problem is that key.intern() isn’t really that unique because it’s returning a string from a pool. String.intern() might return the same object even when used on different objects. Try u …
2
votes
Why can’t my Java webservice talk to my Perl backend?
The API docs say:
“Because some native platforms only provide limited buffer size for standard in …
1
vote
How to determine a swing component?
You could install a MouseListener on each JSeparator. When the mouse enter its area, turn its background red and print a line identifying the object, preferrably by printi …
1
vote
How you organize non-source-resources available at the classpath in your java-project?
I prefer your latter solution: a separate directory that mimicks the source code’s package structure. This way they won’t clobber your source code but will be right next to the compiled class files …
1
vote
Best reflection of extract-interface refactoring in subversion
Rename AppProperties.java to AppPropertiesImpl.java (using svn rename) and commit. Afterwards change your files and add the new AppProperties.java …
2
votes
how to make a thread wait until a file is created in java
You should find out which thread interrupts that thread. Threads don’t do that on their own.
…
1
vote
0
votes
Findbugs warning: Equals method should not assume anything about the type of its argument
I start my equals(Object) implementations like this:
if ((object == null) || !(object instaceof ThisClass)) {
return false;
}
This will also prevent the FindBu …
4
votes
Java GUI Creating Components
Use an appropriate LayoutManager (e.g. GridLayout) to create and add your textfields.
for (i = 0; i < numberOfTextFields; i++) {
JTextField textField = new JTextField();
…
2
votes
System.currentTimeMillis() vs. new Date() vs. Calendar.getInstance().getTime()
I prefer using the value returned by System.currentTimeMillis() for all kinds of calculations and only use Calendar or Date if I need to really display a valu …
3
votes
