| Thread | Last Post | Replies |
|
| kill java thread and process | 11 Sep 2006 11:53 GMT | 3 |
I am developping a client server application and I am stuck in a kill thread/process problem; in my client I start a calculation process (trough a button), wich will launch a process to do this task; after the process finishes all computations, the results are displayed into
|
| java and javax packages | 11 Sep 2006 11:10 GMT | 1 |
I tried to find out what is difference between java.*.*... packages and javax.*... packages Is it only a naming convention randomly followed (least possible) or it has some meaning?
|
| retrieve the key from a map | 11 Sep 2006 10:47 GMT | 24 |
I want to retrieve a key from a map, and I don't find a way to do this. For instance there is the following code: HashMap m = new HashMap(); String key = new String("k");
|
| how to download a file without any delimiter in the column data | 11 Sep 2006 08:47 GMT | 1 |
when we download any data file, the data from different columns get downloaded with a comma as a delimiter. how to download a file with a record as a continuous stream of data. i don't want to remove the commas after downloading.
|
| Doing One Operation on All Array Members (Without Iteration) | 11 Sep 2006 07:58 GMT | 8 |
I don't think this is possible, but I figure it won't hurt to ask. I just might learn something new. I have an object I've created with a boolean isActive. I can set it my setting the field directly (myObject.isActive = true) or with a setter
|
| Disadvantage of using wildcards in import statement. | 11 Sep 2006 07:15 GMT | 11 |
Recently I wrote a certification test for Java2. There was a question on using wildcards in import statement with four options. Only one among them is correct (as per the test paper). I was not very sure about the answer.
|
| Eclipse not picking modified files that where change outside eclipse... | 11 Sep 2006 05:10 GMT | 1 |
Is there a way to have Eclipse watch for modified files that were modified outside Eclipse? For example, a file is modified by another editor than Eclipse. When the modfication happens I want Eclipse to update its cache, compile,
|
| Playback of large WAV files... | 11 Sep 2006 05:06 GMT | 6 |
I'm writing an application to play a large WAV file (say a couple hundred of megs), and allow the user to jump to / select a position in the file (e.g. 120 seconds into it) to start playback. The "skip" method of AudioInputStream always seems to return the value "4096",
|
| Macthing string in text file. | 11 Sep 2006 01:51 GMT | 5 |
Can someone tell me how do i find a particular string in the text file. Suppose i have a text file and i want to check if a word say 'computer' is present or not in the file ,so how do i go about it?
|
| RMI port on client side | 11 Sep 2006 01:49 GMT | 8 |
We run an application using RMI. We run the RMI registry on server side on port 4000. When a client gets a connection to the server, it appears that RMI also tries to open a connection from server to client on a random port on
|
| Updating Eclipse to use Webtools failing? | 11 Sep 2006 01:42 GMT | 2 |
New to Java, new to Eclipse. I am trying to get Eclipse up to speed with the Webtools plugin. I have added the webtools site to the updates list and can connect, but when I try to actually run the install, I get this error:
|
| Java standalone vs. server-side development statistics | 10 Sep 2006 19:04 GMT | 2 |
I am looking for some statistics regarding the usage of Java platform. I am especially interested in amount of developers involved in java server-side (enterprise) development vs. amount of developers programming standalone java applications. Have anybody seen the info in
|
| J2SE vs J2EE | 10 Sep 2006 18:57 GMT | 8 |
I'm extremely confused about the differences between J2SE and J2EE. I definitely get the idea that J2EE is meant of developing multitier robust applications, web services, and other such fancy enterprise level software. What I don't understand is why this
|
| Annoying 1.5 warnings | 10 Sep 2006 17:25 GMT | 21 |
Why does the following code cause a warning and how to avoid it w/o turning warnings off? Vector<File> a = (Vector<File>) (Object) new Vector<File>(); The warning is:
|
| Nested enums | 10 Sep 2006 17:20 GMT | 5 |
I have a protocol structure that makes use of subcommands and I was wondering if it's possible to do something like the following: public enum MajorCommand { LOGON { public enum SubCommand { }; }
|