User brad - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T07:13:05Z http://stackoverflow.com/feeds/user/17025 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/106770/standard-concise-way-to-copy-a-file-in-java/118978#118978 5 Answer by brad for Standard concise way to copy a file in Java? brad 2008-09-23T03:38:29Z 2008-09-23T03:38:29Z <p>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 executable. </p> <p>In order to truly a copy or move a file, ie to get the same result as copying from a command line, you actually need to use a native tool. Either a shell script or JNI. </p> <p>Apparently, this might be fixed in java 7 - <a href="http://today.java.net/pub/a/today/2008/07/03/jsr-203-new-file-apis.html" rel="nofollow">http://today.java.net/pub/a/today/2008/07/03/jsr-203-new-file-apis.html</a>. Fingers crossed!</p> http://stackoverflow.com/questions/113130/where-can-i-find-cheap-java-hosting/118922#118922 5 Answer by brad for Where can I find cheap Java hosting? brad 2008-09-23T03:21:55Z 2008-09-23T03:21:55Z <p>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 requests.</p> <p>The cheapest VPS i've seen is <a href="http://www.vpsland.com/ezseries.html" rel="nofollow">http://www.vpsland.com/ezseries.html</a> at $US15/month. Note i've never used them so i'm not recommending them, just saying that they're cheap.</p> <p>BUT the best bang for your buck is definitely amazon EC2. They host servers for 10c/hour, so about $US70/month. But for that you get 2Gig of RAM and a full processor. A server instance offers no durable storage since hard drives are cleaned between reboots. Instead, use an EBS volume which is far more reliable then any physical disk. Durable data is charged per gig but for small sites (ie 10-20Gig) the cost is negligible.</p> http://stackoverflow.com/questions/97741/oscache-vs-ehcache/98175#98175 2 Answer by brad for OSCache vs. EHCache brad 2008-09-19T00:00:44Z 2008-09-19T00:00:44Z <p>I've used JCS (<a href="http://jakarta.apache.org/jcs/" rel="nofollow">http://jakarta.apache.org/jcs/</a>) and it seems solid and easy to use programatically.</p> http://stackoverflow.com/questions/90851/is-it-just-me-or-are-interfaces-overused/97172#97172 0 Answer by brad for Is it just me or are interfaces overused? brad 2008-09-18T21:27:14Z 2008-09-18T21:27:14Z <p>To the original poster - I'm with you. But i'll qualify that:</p> <ul> <li>I love unit tests and TDD, because i can do my work without fluffing about with app servers. And unit tests are only effective long term if they're mocked</li> <li>I love being able to substitute implementations where its useful to do so (which isnt often, just a few main services in any project)</li> </ul> <p>But, with those two qualifications in mind, interfaces are way abused especially in big J2EE projects. I once had to debug a problem where there were <strong>15</strong>(!) interfaces, stubs and facades between the bit of code that called a function and the implementation of that function. And the unit tests still weren't mocked properly. Just awful.</p> http://stackoverflow.com/questions/73580/how-do-i-send-an-smtp-message-from-java/90001#90001 2 Answer by brad for How do I send an SMTP Message from Java? brad 2008-09-18T04:25:28Z 2008-09-18T04:25:28Z <p>Another way is to use aspirin (<a href="http://aspirin.dev.java.net/" rel="nofollow">http://aspirin.dev.java.net/</a>) like this:</p> <pre><code>MailQue.queMail(MimeMessage message) </code></pre> <p>..after having constructed your mimemessage as above.</p> <p>Aspirin <strong>is</strong> an smtp 'server' so you don't have to configure it. But note that sending email to a broad set of recipients isnt as simple as it appears because of the many different spam filtering rules receiving mail servers and client applications apply. </p> http://stackoverflow.com/questions/86083/any-good-recommendations-for-mp3-sound-libraries-for-java/89556#89556 1 Answer by brad for Any good recommendations for MP3/Sound libraries for java? brad 2008-09-18T02:45:11Z 2008-09-18T02:45:11Z <p>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</p> http://stackoverflow.com/questions/81567/how-do-you-handle-different-java-ides-and-svn/89205#89205 0 Answer by brad for How do you handle different Java IDEs and svn? brad 2008-09-18T01:31:16Z 2008-09-18T01:31:16Z <p>Here's what i do:</p> <ol> <li>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 ivy.</li> <li>write an ant target to generate the Eclipse .classpath file from the ant classpath</li> <li>Netbeans will use your build script and classpath, just configure it to do so through a free form project.</li> </ol> <p>This way you get IDE independent build scripts and happy developers :)</p> <p>There's a blog on netbeans site on how to do 3. but i can't find it right now. I've put some notes on how to do the above on my site - <a href="http://www.bradmcevoy.com/ant_netbeans_eclipse.html" rel="nofollow" title="Ant+Netbeans+Eclipse">link text</a> (quick and ugly though, sorry)</p> <p>Note that if you're using Ivy (a good idea) and eclipse you might be tempted to use the eclipse ivy plugin. I've used it and found it to be horribly buggy and unreliable. Better to use 2. above.</p> http://stackoverflow.com/questions/88541/business-objects-validation-and-exceptions/88917#88917 2 Answer by brad for Business Objects, Validation And Exceptions brad 2008-09-18T00:29:53Z 2008-09-18T00:29:53Z <p>Exceptions should not be thrown as a <strong>normal</strong> part of validation. Validation invoked from within business objects is a last line of defense, and should only happen if the UI fails to check something. As such they can be treated like any other runtime exception.</p> <p>Note that here's a difference between defining validation rules and applying them. You might want to define (ie code or annotate) your business rules in your business logic layer but invoke them from the UI so that they can handled in a manner appropriate to that particular UI. The manner of handling will vary for different UI's, eg form based web-apps vs ajax web-apps. Exception-on-set validation offers very limited options for handling.</p> <p>Many applications duplicate their validation rules, such as in javascript, domain object constraints and database constraints. Ideally this information will only be defined once, but implementing this can be challenge and requires lateral thinking.</p>