| Thread | Last Post | Replies |
|
| A bigger Window | 13 Sep 2005 20:46 GMT | 2 |
>From the book Mastering Java 2 -1.4 form SYBEX, I have this code --- snip public class Picasso extends ExitableJFrame{ Insets insets;
|
| J2EE template | 13 Sep 2005 16:32 GMT | 7 |
All the examples I see for servlets use a PrintWriter to write out an HTML page. This seems rather tedious. Is there a way in the J2EE specification that I could use to create an html template, and then use the servlet to just "fill in the blanks" of the template?
|
| intersection model with threads problem | 13 Sep 2005 16:04 GMT | 1 |
X-No-Archive Hello, I am trying to learn java threads, and to attempt an exercise from my textbook, hwever I am not sure if any of my proposed solutions are in
|
| clearing output | 13 Sep 2005 07:55 GMT | 3 |
I've looked far and wide for the answer to this question without any success. Is there a method in Java that clears output to System.out.println? My goal is to pass output to the line then erase it so that I don't have repeating lines in my loop. Any help is much
|
| convert HashMap to ArrayList | 13 Sep 2005 00:26 GMT | 19 |
I'm trying to get faster performance in looping through my HashMap so I'm converting this HashMap to an ArrayList, but I've got something wrong on the line 'toArray' that I don't understand. What's the correct way to do this?
|
| command to view contents of a class... | 12 Sep 2005 21:19 GMT | 4 |
pls, what's command in shell to view src code of a compiled class? I have a class that's giving me an extra ("__$1.class") when I compile, even though I don't have any inner classes inside class... I would like to know what's inside this __$1.class... thank you..
|
| splitting a string.. | 12 Sep 2005 21:18 GMT | 7 |
does sthg like this work in java? String pairs = sQuery.split("&"); or can u only split strings w/reg. expressions in java? how would this be done w/a regular expression? following what I
|
| Pause a While Statement | 12 Sep 2005 18:06 GMT | 4 |
Anyone know how to pause within a while statement? I have a while statement that prints over 300 lines of output. I need for the statement to count the lines as they are being printed and pause after 20 or 30 lines, prompt the user to press any key, and continue through
|
| Java and IP addresses. | 12 Sep 2005 09:26 GMT | 21 |
Two Java questions: a) I have noticed occasionally that on my taskbar (XP SP2) the Java icon appears. Presumably that is when the website I am connecting to is using Java. Would this icon ever NOT appear, when Java is being used by
|
| Error during compile using classes | 12 Sep 2005 05:56 GMT | 2 |
I am getting a compile error that says cant find symbol for the constructor Worker() in class worker when the class worker has a constructor method..heres the code from the parent(worker), child class (Executive), and used class J2P1.java. Any suggestions to get past the compile ...
|
| Compile error | 12 Sep 2005 05:46 GMT | 3 |
I am getting a compile error that says cant find symbol for the constructor Worker() in class worker when the class worker has a constructor method..heres the code from the parent(worker), child class (Executive), and used class J2P1.java. Any suggestions to get past the compile ...
|
| Frames | 12 Sep 2005 04:49 GMT | 1 |
Can anyone help me please. I'm trying to set up a frame which will have two buttons and a welcom message. Its the beginnings of a basic client server login / registration system. For some reason though, one of the buttons I've added onto the frame seems to expand to the size of the ...
|
| Frame, Panel limit Resizing | 11 Sep 2005 12:09 GMT | 14 |
Given an application as shown below, is there a way to keep the frame and panel on that frame at the starting size so that the user cannot resize it after a "run" by using a mouse to grab of the corner of the frame?
|
| Sockets! | 11 Sep 2005 11:06 GMT | 7 |
I am looking at pros and cons of two approaches. (i) Approach A Client-Servers communicate via sockets The Server keeps two channels one to receive requests(say Port A) and
|
| Reaching a indirect superclass | 11 Sep 2005 10:11 GMT | 6 |
I have three classes extending each other : class a { } class b extends a {
|