1
vote
1
vote
Mysterious EOF exception while reading a file with Java IO functions
The process writing the data may have been told to write the data, but the data could be buffered to write. Be sure to call flush() on the output stream prior to attempting to read the data.
…
0
votes
Can classes in java that implement runnable have methods other than run()?
I think your code in the sample is wrong. This line shouldn't compile if myClass doesn't extend Thread:
myClass test = new Thread(new myClass(stuff));
It probably …
1
vote
GUI creation code layout theory?
Split the GUI out from the business logic altogether. Wrap up the GUI as it's own class and attach the actionlisteners in the constructor, and maybe pass in whatever handles the actual business lo …
5
votes
Where are the form settings of the Swing Application Framework stored?
From here:
Session state is stored locally,
relative to the user's …
1
vote
Java floating point math - (conversion for feet/meters)
If you need precise calculations, use BigDecimal instead of float. If you just want to truncate on prin …
3
votes
What to do with Java BigDecimal performance?
Store longs as the number of cents. For example, BigDecimal money = new BigDecimal ("4.20") becomes long money = 420. You just have to remember to mod by 100 to get doll …
2
votes
Why is my Panel’s repaint not being called?
In StatusLoader.start, you use Thread.run instead of Thread.start. That means StatusLoader.run is executed on the events thread, which is a Very …
1
vote
Can anyone correct this record store delete code in java?
If you had posted this first, we wouldn't have had to bother with your other …
2
votes
Java: How to remove elements from a list while iterating over/adding to it
Refactor out all the ServerObject stopping code from stopAndRemove into a private stopServer method, and then do the removal separately in stopAndRemove and closeCurrentlyOpen. Then you can use a …
0
votes
Most elegant way to clip a line?
There's no pretty way to do it with AWT. Your best bet is something like the Cohen-Sutherland algorithm. …
5
votes
2
votes
Object-Oriented Programming: Java.Polynomial — should methods be ‘destructive’?
Even if you do the "destructive" method, you're going to want to return the new value anyway to allow for function chaining. And, for what it's worth, when faced with the same problem for BigInteg …
1
vote
Java to transcode and manipulate mp3 files
One of the best MP3 encoders out there is LAME. There is an API wrapper for Java called …
7
votes
return key word in a void method in java?
You can have return in a void method, you just can return anything. Some people always explicitly end void methods with a return statement, but it's not mandatory. It can be …
