| Thread | Last Post | Replies |
|
| Stumped..... | 20 Sep 2004 05:46 GMT | 5 |
I'm not seeing what I'm doing wrong (or multiple things, probably). You should be able to call a method for an object by object.method(); but it's not giving me that. I'm getting method(double) cannot be applied to (). I'm missing something fundamental. I have examples and they ...
|
| How do I read environment variable in Tomcat? | 20 Sep 2004 04:30 GMT | 2 |
I have an application that needs to read the <env-entry> information. At present I can use the following code to read the initialization parameters: ServletConfig srvCfg = getServletConfig(); String sSomeData = servCfg.getInitParameter("SomeData");
|
| Java SOCKS support? | 20 Sep 2004 02:28 GMT | 1 |
Hello, as far as I can tell Java can handle proxy servers, like SOCKS, but is this just for URL objects? I'm looking at a sort of SOCKS tunnelling type projects (ala sockscap) but I'm not sure if it's do-able the Proxy class etc. looks pretty limited as I won't be just fetching
|
| Newbie needs help building project & loading/running an executable | 20 Sep 2004 01:26 GMT | 2 |
I am interested looking at some java FFT source code & rebuilding some files to get an executable. I have no experience with java but am looking to come up to speed hopefully pretty quickly. The source code (6 .java files zipped together) is that I'm interested in studying is
|
| Select and Edit a Record in a Table of JSP page | 19 Sep 2004 21:49 GMT | 1 |
I am displaying the following Database records in a Table of my JSP page. Customer No. FirstName LastName 1 Tim Hertal
|
| help my first java program | 18 Sep 2004 22:19 GMT | 4 |
This is my first attempt at java here it is public class Welcome { public static void main(String[] args){
|
| Question about threads | 18 Sep 2004 19:33 GMT | 10 |
Hi, I never really dealt with threads, but apparently now I need to do that now. I have a servlet which needs to retrieve a bunch of pix in parallel trhough HTTP, so I took inspiration from this
|
| Arrays | 18 Sep 2004 17:14 GMT | 3 |
Arrays I am a student and am learning Java. I am not allowed to use graphical user interface, at this point. I MUST use an array to display 3 mortgages;
|
| Emulating component operation? | 18 Sep 2004 08:41 GMT | 4 |
This is repost of news:dc95c98e.0409160631.99d23f1@posting.google.com Hello. Excuse my poor Engli I have a stupid program that has a three JRadioButton named R, G, and B.
|
| showStatus() not working? | 17 Sep 2004 20:18 GMT | 7 |
I am running Redhat Linux 9.0. I am using Firefox 0.9.3 and Mozilla 1.7.2. When I was using j2sdk1.4.2_02 the showStatus() method worked just fine in my applet. I have upgraded to j2sdk1.4.2_05 and now showStatus() does not appear to function at all. Has anyone else noticed
|
| tomcat and loading of web apps | 17 Sep 2004 19:02 GMT | 5 |
is there a way to tell tomcat not to load (or even look at) a certain application? here is my problem, I am developing a java library which contains a singleton. I have different version of the library running in different applications
|
| How to put JLabels in an array? | 17 Sep 2004 18:56 GMT | 2 |
I'm trying to put 10 JLabels in an array, but I always receive an error on following code (defining the first element of the array): RowTlxImp[0]= new JLabel(lblTlxImp1); symbol : constructor JLabel (javax.swing.JLabel)
|
| byte, int....professor responds, confusion increases. | 17 Sep 2004 16:33 GMT | 4 |
I'm am taking an introduction to Java class at my university and I'm having trouble with some of the concepts. The IDE we are using is jGrasp and the text for the class is Java Software Solutions 3rd edition, Lewis & Loftus. I would appreciate it if anyone could help me
|
| Downloading HTML files from Server.. | 17 Sep 2004 15:48 GMT | 1 |
A website runs a Fantasy Football League for English soccer in the England They put up a list of the players and the points they have I am running a fantasy football for just a few friends
|
| confused about Java I/O, byte[] and streams | 17 Sep 2004 15:31 GMT | 5 |
I have an array of bytes which contains binary data. How do I go about piping this data into a servlet output stream? PrintWriter out = response.getWriter(); out.print(mybytes); //mybytes has type byte[]. This doesn't seem to work
|