Hello everyone. I haven't attended SACJUG meetings in about a year now but am glad that this is up and running. I am in need of advice and opinion and thanks...
Our client is an innovative leader in the health and wellness industry, serving more than 55 million Americans, is seeking a Java Specialist to come aboard a...
I was trying to put together a small prototype using sms short codes. Most of the connection aggregators want $1000 upfront and $500/month (or similar) to let...
I heard Oracle takes care of thread issues automatically by means of its built-in scheduler. Could someone tell me more about it? A couple of years ago I wrote...
Thanks so much, Darrin! I have already found a permanent position that I am very happy with. I have forwarded this to a few people that might either be...
Last Call for the Premier Ajax/Web 2.0 Event, The 2007 Rich Web Experience (www.therichwebexperience.com) coming September 6-8th to San Jose. The 2007...
Reminder from: sacjug Yahoo! Group http://groups.yahoo.com/group/sacjug/cal Sacramento Java Users Group Meeting Tuesday September 11, 2007 6:00 pm - 8:30 pm ...
sacjug@yahoogroups.com
Sep 9, 2007 12:57 am
867
Could anyone explain why do I need to use the java.io.serializable interface? I read several articles returned by Google search... Basically I am not sure...
Dear Anonymous, To oversimplify: - don't worry about it :-) - when the code blows up decide if you either want your object to be serialized or not - if you...
Hi everyone: I wanted to let you all know about a free webinar on Design Patterns by Alan Shalloway, co-author of Design Patterns Explained: A New Perspective...
Reminder from: sacjug Yahoo! Group http://groups.yahoo.com/group/sacjug/cal Sacramento Java Users Group Meeting Tuesday October 9, 2007 6:00 pm - 8:30 pm (This...
sacjug@yahoogroups.com
Oct 7, 2007 12:56 am
872
October 9, 2007 We will present JUnit Factory, an experimental test-generation service from Agitar Software. Sandwiches and sodas will be sponsored by...
"Oracle said Friday it offered to buy BEA Systems for about $6.66 billion, its latest effort to up the ante against Microsoft and Germany's SAP in the fiercely...
If you - 1. Are interested in moderating this list. 2. Attend meetings at least once a quarter. Please forward this message to Chris Scheuble to identify...
I am pleased to announce that the group has added some more moderators to the sacjug list on Yahoo! We thank all those who were willing to respond to moderator...
Hello, I tried to assign a decimal number to long data type and get an error. long a = 2.5; //compiler complains on this line. double b = 1.5; //This line is...
sue - a long data type in Java is a whole number, not a decimal number. The only two data types that understand decimals are floats and doubles. If you are...
QUESTION Given the following code snippets, explain how the print statement could print 'false' public static <T> void copySet(Set<T> source, Set<T>...
Renuka, Thanks this is an interesting problem.My answer: the add() method is optional for Set, a particular implementation may not implement and simply return...
*Code explaining why Java 6 is missing from new Mac OS **Cut and pasted from: http://www.javalobby.org/java/forums/t102924.html* * if* (getUser().getHumor() <...
Gals and guys, One of my partners is looking for one java coder for a 6 weeks contract to start asap. I am booked for another 4 weeks so I have to pass this...
Hello, Could anyone explain what the page scope is and how to use it? I guess it is probably thread safe. Does it have anything to do with pageContext? Thank...
Page scope allows you to store objects that are only availible on a single page. It won't live beyond the life of the page. If you forward to another jsp (and...