| Thread | Last Post | Replies |
|
| Some External Commands Won't Work Under Windows | 28 Oct 2004 05:41 GMT | 1 |
I'm using the code (included below) to run external programs. Overall, I've had no trouble with it (I'm using it on Linux and Windows 2K/XP). However, I've just run into a problem with a program that it won't run. Is there some reason a .exe file could be launched from the ...
|
| Strange problem!!(it is, atleast to me!!) | 28 Oct 2004 02:31 GMT | 2 |
Although, this is not a programming or development problem instead its an end user problem which im facing and thought programmers / developers could help. --
|
| Can't compie code from the API examples | 28 Oct 2004 00:32 GMT | 2 |
I'm trying to compile the following code, copied from the API (1.5.0)*: Hashtable numbers = new Hashtable(); numbers.put("one", new Integer(1)); numbers.put("two", new Integer(2));
|
| Arrays of multiple types of objects possible? | 28 Oct 2004 00:21 GMT | 4 |
Is it possible to create an array of multiple data types, specifically seperate instances of different objects? What i am trying to do is to create a very basic wargame and in it I would like to include transports. Now I want the transports to carry 2 soldiers or a tank
|
| quiz | 27 Oct 2004 23:49 GMT | 1 |
I have some doubts regarding inner classes. true/false 1. inner class can be instantiated only in it's enclosing class 2. they can be accessed only within the enclosing class
|
| Split a line then print | 27 Oct 2004 21:31 GMT | 1 |
I splitted this line "printL 3" using this command: String [] words = command.split(" "); How can I now print out "printL"?
|
| Coping bytes from one file to another changes characters | 27 Oct 2004 20:25 GMT | 3 |
Given the following code snippet: while (c = in.read() != -1) { out.write(c); }
|
| Java Servlet on Sun server | 27 Oct 2004 17:09 GMT | 6 |
In my servlet code I call response.sendRedirct("www.google.com"); First I compile the source file with javac -classfile "j2ee-directory/j2ee.jar" Add the class file into the newly created .war file with deyploy tool
|
| File Transfer | 27 Oct 2004 16:03 GMT | 7 |
Hi, this is an assessment that I have for university, so I do not actually expect people to give me answers as to what to do, I am just asking if it would be possible for someone with more Java knowledge than me to have a look at it and see if I going about it the correct way. ...
|
| changing a JRadio Button selected state | 27 Oct 2004 16:02 GMT | 11 |
I have 6 JRadioButtons within a ButtonGroup and everything works fine "until" I want to reset the state of any of the Radio Buttons. It refuses to update the state of any of the Radio Buttons when fired by an
|
| class LinkedList | 27 Oct 2004 15:42 GMT | 2 |
By using the class LinkedList, I wrote a method, that returns a list of Elements of the type of a class, I wrote too. Now I want to access a method of the first Element by using the method getFirst() (this should return an element of the type of the class in my
|
| How to starthandshake with client browser?? | 27 Oct 2004 13:37 GMT | 2 |
I am using JSSE to write a TCP socket program. The task i need to do is reveice a CONNECT response from a browser, ie HTTPS. And then my program need to communicate with the destinated server.
|
| private access to arrays | 27 Oct 2004 11:17 GMT | 7 |
I am writing a program which uses an array of bytes (declared using the private key word). My understanding of the word "private" means that the data should not be able to be changed by any other objects (unless the change is made via a setter method). However, the following test ...
|
| Coloured console output. | 27 Oct 2004 11:12 GMT | 7 |
How can I get coloured console output from java? Dan.
|
| URL parsing issue | 27 Oct 2004 04:28 GMT | 3 |
I'm having a problem with URL parsing. If I construct a URL with a user name and password, where the user name contains an @ I get a malformed URL exception. For example, if my parameters are: user name = bob@usernet.com
|