| Thread | Last Post | Replies |
|
| looking java development kit | 03 May 2005 18:32 GMT | 3 |
does anyone know where i can download j2sdk?
|
| diable logging in tomcat, | 03 May 2005 18:02 GMT | 5 |
I am looking to ship my servlet application in a CD along with Tomcat_5.0.28 container. But the problem is i want to diable tomcat's logging feature because data cannot be written to a CD in the of a file IO (As tomcat does by logging startup/error messages to the catalina
|
| Calling one EJB from another EJB | 03 May 2005 17:58 GMT | 2 |
My environment is Eclipse 3.0 with Lomboz Plugin; JBoss 3.2 Application Server; Microsoft SQL Server 2000 Database. The web application I am working on is using 2 different datasources (odbc-ds.xml and mssql-ds.xml). One is using Sun's ODBC-JDBC Driver while
|
| CLASSPATH problems... | 03 May 2005 17:58 GMT | 2 |
Hello all, i am trying to compile a java application that uses a specific jdbc driver (postgresql) however im running into a weird problem im not sure how to fix. When i log into the system, i have my .profile defining my CLASSPATH, and here is what it says:
|
| Arithmetic with ULPs | 03 May 2005 17:31 GMT | 6 |
Basic question: if d is a finite positive double value, is d - Math.ulp(d) guaranteed to be the next representable double value smaller than d? Is there any finite value of d for which the result would be d, or for
|
| What do you think about the for-each loop? | 03 May 2005 16:31 GMT | 23 |
The reference document : http://java.sun.com/j2se/1.5.0/docs/guide/language/foreach.html The above document says : "the for-each construct combines beautifully
|
| Writing to a tape device in Windows | 03 May 2005 15:01 GMT | 2 |
I can read from a tape device using a FileInputStream as follows: FileInputStream in = new FileInputStream(new File("\\.\Tape0")); // followed by standard stream reading stuff Under Linux, I can write to that device as follows:
|
| splitting up huge (1 GB) xml documents | 03 May 2005 13:36 GMT | 5 |
I am facing the problem that have to handle XML documents of approx. 1 GB. Do not ask me which sane architecture allows the creation of such files - I have no control over the creation and have to live with it. I need to split this massive document up into smaller chunks of valid
|
| Graphics2D with Thread ? | 03 May 2005 12:56 GMT | 2 |
Hi, there, I am developing Java applications (not applets). I was wondering if I can write a program (probably a JFrame window) that can draw
|
| Is it possible to create stand-alone binaries? | 03 May 2005 12:52 GMT | 3 |
Hi, I'm very new to Java and was wondering if it was possible to create stand-alone applications with java that include the runtime environment and other .jars and native libraries included all in one .exe file? Thanks,
|
| Whats the problem in this code ? | 03 May 2005 10:46 GMT | 9 |
MY CODE IS <% if (Status.equals("true") ) { int Answer=9; %>
|
| question about availability of tools | 03 May 2005 10:45 GMT | 1 |
I am new to this newsgroup, and I was wondering, I'v been looking for several days on the internet for some tools or package that can help me implement a project I'm working on. Is there anybody here who can tell me if there is, somewhere, a package
|
| Question about java inheritance | 03 May 2005 09:06 GMT | 5 |
I had a problem about java inheritance that I do not know how to solve in an elegant way. I have a class named (let say) OriginalClass with a method method called firstMethod which call secondMethod (also a method of
|
| File.getName() yes and no? | 03 May 2005 07:27 GMT | 2 |
Having a hard time understanding this behavior File(".") File("/") Given the File object above, output of ":::" + x.getName() + ":::" is
|
| the right way to kill a java thread on Windows? | 03 May 2005 02:55 GMT | 5 |
I used NetBeans + JDK 1.5.2 to write a simple program using the SocketServer class, on my Windows 2000 pc. The program dies not die when I kill it. I kill it by right-clicking on the process in the execution window and selecting "terminate." It appears to die within NetBeans but ...
|