| Thread | Last Post | Replies |
|
| Weird NullPointerException inside BufferedReader.readLine() | 04 Nov 2005 13:08 GMT | 2 |
I'm getting a very weird NullPointerException from deep in the bowels of BufferedReader.readLine(), and having looked at the 1.5 source for the library I'm not the wiser how this can happen -- the library code for BufferedInputStream.read() (the actual source of the exception)
|
| And yet another generics question | 04 Nov 2005 12:09 GMT | 11 |
Can anyone explain to me why: class Test<X> { static X x() { return null; } // line 3
|
| accessing a Java int array from JNI | 04 Nov 2005 11:49 GMT | 2 |
How can I access an encapsulated Java int array from a native method, given the Object that declared it? ie, can anyone replace the 3rd & 4th lines in the first native method below with actual code that does the job?
|
| Is Struts-like API really needed? | 04 Nov 2005 11:16 GMT | 1 |
We have a Java Web-Application that we are going to re-architecte. It has been build in the rush and now it has poor evolution perspectives. There is no complex processing in the application. It is a kind of Contact Management system which display reports on the Contact Activity. ...
|
| how to run java/tomcat/mysql at Cygwin | 04 Nov 2005 10:20 GMT | 1 |
i want to compile java application and run it at the tomcat with mysql at cygwin. it's because the dev environment is windows while the production environment is unix/linux. it's easier to have the same path setting
|
| servlet return a bean | 04 Nov 2005 08:06 GMT | 1 |
i want to make a servlet which would return a bean when it would be called. how ?
|
| Detecting EOF | 04 Nov 2005 08:00 GMT | 4 |
I'm working on a streaming data server which accepts a query, then sends any matching data that comes in after the query was submitted. The problem I'm having is that when a client sends a query then later goes away, I'm not always able to detect the situation to cancel their
|
| dir command equivalent? | 04 Nov 2005 06:37 GMT | 3 |
What would be an equivalent way to print out the contents of the current directory in Java? Also, how would I change the current directory to list files in other directories? Thanks,
|
| common code and exceptions too many? | 04 Nov 2005 05:21 GMT | 11 |
Had a java design question to get what people think and what is generally done. I've started to embrace more the use of throwing exceptions (I'm an old C programmer did not have such a thing always return codes) particular in the design of common code. I have been
|
| New to JSP world | 04 Nov 2005 05:15 GMT | 8 |
I'm new to jsp and xml. I don't expect anyone to code my solution for me but I have NO IDEA which way to go to learn what I need to know in order to get this done. I bought a few books which have helped but I'm basically stuck. I have some background in programming (ASP, VB) but
|
| Mindprod.com news | 04 Nov 2005 02:47 GMT | 27 |
You may not have been able to access the main java glossary page http://mindprod.com/jgloss/jgloss.html today. The Novell server somehow locked the file during an upload leaving it
|
| JSP Question | 04 Nov 2005 02:35 GMT | 1 |
Not sure if this is the correct group, but... I have the following jsp page, basically i want to append some text to the username before the form is submitted, is this possible? Thanks
|
| How to create a bean in struts without form? | 04 Nov 2005 00:33 GMT | 2 |
I am using MyEclipse. Thanks.
|
| using a JSP to do a file read | 03 Nov 2005 23:57 GMT | 5 |
I am in the learning stages of using JSPs, and i am tryin to write a utility which will unzip a file on a server (this is because i have had to much trouble uploading a folder with the unzip'd contents...i.e. 100s of files).
|
| how to read multiple cookies in header | 03 Nov 2005 23:20 GMT | 1 |
I am visiting a web page (via URLConnection) which is supposed to spit out four cookies. Using the standard: String cookie = conn.getHeaderField("Set-Cookie"); only gives me the last cookie in the header. I know I can manually
|