| Thread | Last Post | Replies |
|
| JRE | 12 Mar 2006 10:59 GMT | 4 |
I just downloaded and installed the J2SE SDK - do I need to install the JRE to get applets to run in my web page?
|
| Fetching an URL from a GUI, repeatedly and asynchronously | 12 Mar 2006 10:35 GMT | 6 |
I have a probably simple question, but lack Java experience myself. I'm programming a multi-player card game applet, talking to an Apache module. (http://preferans.de , is in Russian though). My problem is: if I will call something like
|
| tomcat memory utilization, | 12 Mar 2006 09:24 GMT | 1 |
My servlet has compute bound as well as memory bound operation to perform. Hence, i am creating and starting a thread in my servlet instead of servlet implementing Runnable. The implementation seams to work without any problem but the tomcat's memory seams to grow
|
| jsp forward | 12 Mar 2006 07:44 GMT | 3 |
i have a JSP page. i want to check whether there is user exists in the session or not String user=(String)session.getAttribute("user"); if(user==null)
|
| Math.random() | 12 Mar 2006 07:05 GMT | 7 |
Any idea using Math.random(), how long it takes to start to cycle? I'm running upwards of ten million iterations at a crack, using Math.random() on each itreration and am wondering if this is actually random enough for my purposes. Thanks, Ike
|
| Generics Question | 12 Mar 2006 05:24 GMT | 4 |
I am getting this warning: Type safety: The method compareTo(Object) belongs to the raw type Comparable. References to generic type Comparable<T> should be parameterized
|
| Stupid Calendar Class | 12 Mar 2006 05:01 GMT | 6 |
AHHH... I have extended Calendar and now it is complaining (depending on which Java version I run) that clash: compareTo(java.lang.Object) in MyCalendar and compareTo(T) in
|
| generating text output based on XML config | 12 Mar 2006 01:40 GMT | 2 |
I am reading in data from a database and based on the value in one particular cell, will output the data in a certain format. Looking for some assistance on this. What I'm conceptualizing, is an XML config file with common values across all "types" and then some that are
|
| Java GUI Swing Byte Text Area? | 11 Mar 2006 22:34 GMT | 11 |
I've designed a GUI in java and I want one of the text areas to be of input bytes. Except JTextArea only inputs of type String and if I convert the string to byte arrray I lose precious and my answer doesn't make much sense in the end.
|
| passing utf strings to java from c in jni?? | 11 Mar 2006 20:44 GMT | 6 |
hi... i've managed to far to pass a string to java from c.. but now i wanna pass a hebrew string, and as i hardcode it in c, i get question marks on the java side.
|
| MessageDrivenBeans | 11 Mar 2006 19:00 GMT | 9 |
I am investigating the use of a J2EE container ( JBoss, etc. ) for the sole purpose of using MessageDriveBeans as JMS consumers. Is it possible for multiple instances of a container ( one on each machine ) to be consuming from the same JMS queue ( persisted to the same
|
| J2SE installation | 11 Mar 2006 17:31 GMT | 1 |
I've just installed the JS2E from the JDK 1.1.8. I have four or five applets on my local web pages, made in 1.1.8, and they are coming up white instead of the standard gray. Also, a DemoButton example is coming up with exception
|
| data entry layout ideas | 11 Mar 2006 17:14 GMT | 3 |
I'm looking for ideas for screen layouts for data entry. ( app is coded in java) are there any web sites /resources to get ideas for data entry layouts, obviously someone has been there done that , before me.
|
| Keyboard handling question | 11 Mar 2006 16:28 GMT | 6 |
I need to intercept and act on all the usual typing keys you'd find on a terminal keyboard (i.e. keys in the ASCII range 0x01 - 0x7f). I've extended KeyAdapter which does more or less what I want except that it can't intercept TAB or (presumably) any of the other focus ...
|
| jnistubs on linux | 11 Mar 2006 13:49 GMT | 1 |
Going crazy. Trying to use the jnistubs code as found in the Solaris JNI book - it's been modified for linux. We can use it to run things like printf with several parameter variations,
|