javamonkey79

1,308
Reputation
167 views

Registered User

Name javamonkey79
Member for 1 year
Seen 9 hours ago
Website
Location Spokane, WA
Age 30
I started programming on my dad's Commodore 64 when I was 12. This was at the dawn of the WWW. After floundering in my teenage years and early 20's I found my true calling -- programming.

After completing my BA in CS in late 2006 from a major university I got a job programming java and SQL for a mid-sized health care company.
Nov
12
comment identity from sql insert via jdbctemplate
Wow, I didn't really know about that class - kinda neat. Thanks. +1
Nov
3
comment identity from sql insert via jdbctemplate
That would be the "one liner" I am looking for here. Nice. Sad thing is I saw the link but glossed past it due to this: "part of the JDBC 3.0 standard". (I don't think we use JDBC 3.0, but I also don't think this is relevant).
Nov
3
answered identity from sql insert via jdbctemplate
Nov
3
asked identity from sql insert via jdbctemplate
Oct
16
comment How to install a custom plug-in in Eclipse Ganymede?
aka, "the old school way" :)
Oct
16
comment Java+Eclipse: how do you debug a java program that is receiving piped/redirected stdin?
Would putting the args in your Eclipse run configuration do the trick?
Oct
14
awarded  Yearling
Oct
5
answered Best way to parse an XML String in Java?
Oct
5
revised maven-assembly plugin - how to create nested assemblies
edited tags
Sep
30
accepted How to make the Java.awt.Robot type unicode characters? (Is it possible?)
Sep
25
awarded  Popular Question
Sep
15
comment Maven - built jar using maven-assembly-plug in not always deployable
What is the output when you try to run the jar? Have you tried running the maven command with the '-e' flag, if so, are there any obvious exceptions?
Sep
9
answered Create Database :: ERROR
Sep
7
comment Formatting (for money) with setText(String.valueOf)
Happy to help, yw :)
Sep
7
accepted Formatting (for money) with setText(String.valueOf)
Sep
7
revised Formatting (for money) with setText(String.valueOf)
added code example from link; added 108 characters in body
Sep
7
answered Formatting (for money) with setText(String.valueOf)
Sep
7
comment Quickly create class from an interface in eclipse
Are you a contributor? You really seem to know quite a lot about it :)
Sep
2
accepted How is an instance initializer different from a constructor?
Aug
31
answered How is an instance initializer different from a constructor?
Aug
28
comment Automation in Eclipse
I didn't even think of that, but I use External Tools backed with scripts quite a bit too - nice suggestion. +1
Aug
27
comment Automation in Eclipse
I'm not comparing Ant to Maven - heck I don't really even know Ant all that well. If you think it is the best solution, then post it. But I stand by my opinion that a project does not have to be huge to use maven.
Aug
27
comment Automation in Eclipse
I think that is a matter of opinion\subjective. But, as such, you are entitled to it.
Aug
27
answered Automation in Eclipse
Aug
27
revised Running External Apps on save in Eclipse
posted a expansion of original solution
Aug
26
comment Determine linux version from java
Beat me to it! :)
Aug
14
comment java thread blocking
Thanks for the clarification, this stuff is not trivial :)
Aug
14
asked java thread blocking
Aug
6
comment Java threading question - listening to n error streams
I think the concurrency of the spawned threads and their corresponding streams is the problem here. I don't see much in ProcessBuilder (or for that matter in all of Java) which handles processes much better. jconfig is mentioned in the article listed above but apparently the project is pretty much dead (at least for now).
Aug
6
comment Java threading question - listening to n error streams
Yeah, I've read this before. The problem is that rt1 is opening a listening socket and rt2 is opening the write side of the socket. If I start 2 threads to feed off of rt1's streams then the parent thread seems to block and rt2 never starts. I've tried running all exec commands and then starting all listeners and when I do this it forces the exec'ed commands to block.
Aug
5
asked Java threading question - listening to n error streams
Aug
4
accepted How to avoid OOM (Out of memory) error when retrieving all records from huge table?
Jul
30
revised SQL Server JBDC Driver comparison
clarification
Jul
30
comment SQL Server JBDC Driver comparison
That is really what I am comparing to jtds to, sorry - I should have made that clearer.
Jul
29
asked SQL Server JBDC Driver comparison
Jul
24
awarded  Popular Question
Jul
23
revised HTML\CSS Coupon Script
deleted 400 characters in body
Jul
22
comment HTML\CSS Coupon Script
Yes, thank you. Surprisingly, googling css coupon gets you nothing but junk.
Jul
22
revised HTML\CSS Coupon Script
added 550 characters in body
Jul
22
comment HTML\CSS Coupon Script
/rant Why would someone down vote this? I mean, I know it is a simple question, but c'mon! What do I have to do, make it a subjective\cute\fun question? Jeeze.
Jul
22
comment HTML\CSS Coupon Script
A coupon like you would see in a newspaper or other print material. You know, a box with dotted lines.
Jul
21
asked HTML\CSS Coupon Script
Jul
19
comment Clean up repetitive setup and cleanup Java(JDBC) code
In addition to hiding this messy setup\teardown code, Spring will improve the exception handling in 2 ways: 1) it will handle the SQLException and 'regurgitate' it as something more meaningful 2) the exception that is 'regurgitated' will be unchecked, so you don't have to catch or throw anything.
Jul
17
comment Is there a way to get Eclipse to treat 4 spaces exactly as it treats a tab?
Heh - I do this by default but had to think about it :) +1
Jul
16
comment How do I package multiple WAR files in one Maven project?
Why are you unsure of the assembly plugin? This seems like it might be your best bet.
Jul
16
answered MySQL select “accumulated” column
Jul
13
comment How to draw a rectangle on a java applet using mouse drag event and make it stay
Personally, I would say that the 'this' usage is a bit of preference - there are others who would militantly disagree. Glad to help.
Jul
12
accepted How to draw a rectangle on a java applet using mouse drag event and make it stay
Jul
12
comment Strange behaviour: Java Comparator randomizes list entries.
Sweet catch, bravo!
Jul
12
answered How to draw a rectangle on a java applet using mouse drag event and make it stay