James Carman

Ranch Hand
+ Follow
since Feb 20, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by James Carman



When I access the page it says...


The context path is /jsp-examples!


[ August 06, 2005: Message edited by: James Carman ]
18 years ago
Actually, you don't really need to know how it happens. It just does. It's definitely faster, for the most part, especially if you're going to run the same query many times. Also, PreparedStatements are safer. You don't have to worry about the "'" character when building up an OQL string if you're binding in query parameters.
If you're programming with servlets, you can always ask the request what the context path is rather than parsing it out of the URI.
18 years ago

Originally posted by Sri Addanki:

James, How much are you asking for the Dell? Also, can you please share your experience with Dell.




I'm asking for $1000. Here are some specs...

- Pentium M 1.7 GHz Processor
- 1 GB RAM
- 64 MB ATI MOBILITY RADEON 9000 AGP
- 40 GB 5400 RPM Hard Drive
- 24X CD-RW/DVD Combo Drive
- Dell TrueMobile 1300 WLAN Mini-PCI Card (802.11 b/g)
- Broadcom 570x Gigabit Integrated Controller (10/100/1000)
- Microsoft Windows XP Professional

I also have the Advanced Port Replicator w/Monitor Stand ($100)

Also, I have had nothing but good experiences with Dell. Their customer service is great and they put quality components into their systems (at least the ones I buy).

[ May 19, 2005: Message edited by: James Carman ]
[ May 19, 2005: Message edited by: James Carman ]
18 years ago
All you need to do is figure out how big your new array will have to be (array1.length + array2.length) and instantiate it. Then, you can either hand code the copy or use System.arraycopy.
18 years ago

Originally posted by Mark Spritzler:
Any good sites for deals or information about what is good in today's laptops, what I definitely have to have, and what I need to avoid? Is Intel's chips better or worse than AMDs chips for laptops?

Thanks

Mark



I have a Dell Inspiron 600m for sale!
18 years ago
Two things. First, you need to change your name to adhere to the naming policy. Second, please don't cross-post your question to multiple forums.
18 years ago
What version of Java are you using? There are utility classes included in JDK5 that would help you. Of course, if you're not using JDK5, you can download the classes you need. In particular, you might look into using a Latch or a CountDown.
18 years ago
Aside from using some third-party tool like InstallAnywhere or something, you can package your application as an "executable JAR file." Or, you might look into distributing your application via the web with Java WebStart.
18 years ago
Are you including the servlet API jar file in your EAR?
18 years ago

Originally posted by Michael Dunn:
JDialog() with modal set to true

search for 'extends JDialog' for working examples



You must also make sure you set the parent of the JDialog if you want it to be truly modal.
18 years ago
I think the best answer I can give to a question like this is to advise you to try coding your webapp by putting all of your presentation logic into servlet code rather than a JSP. Then, you'll realize very quickly why we use JSPs.
18 years ago
No, since it's final, you have to specifically initialize it to a value.
18 years ago

Originally posted by D Rog:
I think it's useless discovery.



What do you think is "useless discovery"?
18 years ago
More importantly, you could have a tag named the same thing in two different tag libraries.
18 years ago
JSP