| Thread | Last Post | Replies |
|
| Get data from a Display? | 21 Feb 2005 09:36 GMT | 1 |
I am currently studying for the SCJP exam with a friend who raised a question to which neither of us has an answer. We work with an application where we have no access to any source code (and the Tecchies won't give it to us.....). So, we raised the
|
| eclipse and servlets | 21 Feb 2005 08:28 GMT | 3 |
Hallo everybody I'm writting a servlet in eclipse and face the following problem. Usually in java a convention is, that a String must be between "". When I write
|
| Java with large Integers | 21 Feb 2005 07:13 GMT | 1 |
Which version of Java support large Integer number? Where can I download it from? Thanks Steve
|
| Date difference | 21 Feb 2005 04:05 GMT | 5 |
I need to calculate the difference between two dates stored in Calender objects. The difference should be represented as a number of days and rounded down to a whole number of days. Is there a smarter way of doing this than using a while loop to
|
| Quicker way to cast array items? | 21 Feb 2005 02:20 GMT | 4 |
I have Object[] array; I happen to know that each of the items of the array has class MyClass. I realize that I can't cast the whole array thus:
|
| Elements from array1 in array2? | 21 Feb 2005 00:32 GMT | 1 |
I have need for the following. Given any two arrays of ints array1 = [1, 5, 7] array2 = [1, 2, 7, 9]
|
| simple access modifier question.... | 20 Feb 2005 22:12 GMT | 4 |
I have the following declarations in a class I have written: public class SecretWord { private String description; private String secret;
|
| java Array objects | 20 Feb 2005 21:16 GMT | 2 |
I am not new to java, but I'm quite confused by this problem I've been given. I have to create a function of this type: public boolean checkInfo(Array info); However, I have never used type 'Array' before and haven't yet found
|
| Java version 1.5 | 20 Feb 2005 17:46 GMT | 1 |
Are there any special problems in Java 1.5 ? I'm working for a small startup company and we would like to upgrade from java 1.4.2 to java 1.5 . However, we are afraid of the consequences (if there are any).
|
| difference between comparator and comparable interface | 20 Feb 2005 14:24 GMT | 3 |
what's the difference between comparable and comparator interface.
|
| Need to return multiple values. | 20 Feb 2005 11:32 GMT | 17 |
Hello. I have a method like this: public void p(Integer a, Integer b, Integer c) { ...
|
| Determining if a vector index is used... | 20 Feb 2005 05:55 GMT | 1 |
I have need for the following. Vector v = new Vector(); public void addToVector(int[] myArray, int index) { v.addElementAt(myArray, index);
|
| Reading in MP3s | 20 Feb 2005 05:05 GMT | 4 |
I am currently performing my University 3rd Year Project and need some help in using Sun's mp3 plugin to read in mp3 files. I am unsure of which classes I should be using to read in the data from an mp3 file and then be able to get the audio bytes and the files AudioFormat out?
|
| Sorting String[][] arrays... | 20 Feb 2005 04:35 GMT | 5 |
I've been trying to find a way to order an array of players, scores and totals by lowest total first... down to highest at the bottom and I can't seem to figure it out. I've read about the the Array.sort(), but the examples I have seen show it used with single arrays and not 2d ...
|
| Time parsing | 20 Feb 2005 03:02 GMT | 2 |
I'm trying to find a way to parse at-style time formats, or something similiar. Specifically, I'm trying to use RRDTOOL's time format in JRobin. The time specification is available here:
|