0
votes
How do you handle different Java IDEs and svn?
Here's what i do:
Only maintain in source control your ant build script and associated classpath. Classpath could either be explicit in the ant script, a property file or managed by i …
1
vote
Any good recommendations for MP3/Sound libraries for java?
I can also vouch for jlayer as being good for playing. Used it a couple of years ago and it just did the business without any fuss. Not sure about meta stuff though
…
2
votes
How do I send an SMTP Message from Java?
Another way is to use aspirin (http://aspirin.dev.java.net/) like this:
MailQue.queMail(MimeMessage message)
…
0
votes
Is it just me or are interfaces overused?
To the original poster - I'm with you. But i'll qualify that:
I love unit tests and TDD, because i can do my work without fluffing about with app servers. And unit tests are only effe …
2
votes
OSCache vs. EHCache
I've used JCS (http://jakarta.apache.org/jcs/) and it seems solid and easy to use programatically.
…
5
votes
Where can I find cheap Java hosting?
One non-vps offering i'm aware of is at kattare.com. They offer limited access java hosting for $US9/month. I've used kattare for years and have found them reliable and responsive to support reques …
5
votes
Standard concise way to copy a file in Java?
Note that all of these mechanisms only copy the contents of the file, not the metadata such as permissions. So if you were to copy or move an executable .sh file on linux the new file would not be …
