Questions tagged [jdk1.4]

For issues relating to setting up or using the Java Development Kit (JDK), version 1.4.

JDK or Java Development Kit is a set of tools that Oracle, formerly Sun Microsystems, provides for developing Java applications.

Note: this was End of Life'd in October 2008.

73 questions
0
votes
2 answers

More concise way to iterate this treemap data structure in JSTL

I am using the following data structure to store JDBC results in a Servlet controller prior to displaying in a JSP view using JSTL. TreeMap - TreeMap - String[] Four columns of data are returned per…
T.P.
  • 2,975
  • 1
  • 21
  • 20
0
votes
1 answer

Eclipse Gynamide and JDK compatibility

i am using JDK1.4.2_02 on my system, which is required to run my ATG Dynamo server. I have tried to run Eclipse 'Ganymede'-( 3.4/3.4.2). But facing problem, its asking to use JDK1.5, which I cant use. Since ATG Dynamodosent run on JDK1.5 . I googled…
Mayank Tiwari
  • 83
  • 1
  • 2
  • 11
0
votes
1 answer

Web Services using J2ME and Java Version 1.4

We are trying to program an MFP (Multi-function-printer) to communicate to our backend using Web Services. We are sending large images so using MTOM is important. Since we are dealing with a very constrained environment I would rather not use Axis.…
Javamann
  • 2,882
  • 2
  • 25
  • 22
0
votes
2 answers

Where can I find Java SDK 1.4.2 compatible with windows 32?

I need Java SDK 1.4.2 on my system which is 32 bit compatible. I am unable to find it. Can someone please help me out? Thanks in advance
Supriya
  • 131
  • 1
  • 8
  • 19
0
votes
1 answer

byte to hexadecimal digit Formatter symbol not found

I have a problem to compile the application in jdk 1.4 instead of jdk 1.6. String encryptedString = null; byte[] bytesToBeEncrypted; try { // convert string to bytes using a encoding scheme …
0
votes
2 answers

How to open html file in default browser in JDK 1.4

I see a lot of JDK 1.6 notes about how to open an HTML file in the default browser but none for JDK 1.4. Does anyone have any experience with that?
reza
  • 5,972
  • 15
  • 84
  • 126
0
votes
2 answers

SoapAction Issue under Java 1.3

This problem has been bothering me for days. Hopefully someone has come across this before and has developed a workaround. So I've developed a middleware Java app which during its execution invokes a SOAP action. Now, the behavior of this bit of…
Joseph Weissman
  • 5,697
  • 5
  • 46
  • 75
0
votes
1 answer

Does JBOSS 5.1 run in JDK 1.4?

Does JBOSS 5.1 run in JDK 1.4 ?? We have a websphere server which runs in jdk 1.4 we need to access jboss queue (configured in jboss 5.1). Inevitably we have to use jboss 5.1's client jars to access the queue Am wondering (rather worrying) whether…
Arun
  • 3,440
  • 11
  • 60
  • 108
-1
votes
1 answer

Why Channel interface redefine close() method?

The close() method has already defined in the Closeable interface, why Channel redefines it again? package java.io; import java.io.IOException; public interface Closeable extends AutoCloseable { public void close() throws…
ffcactus
  • 152
  • 8
-1
votes
1 answer

APACHE TOMCAT 1.4 AND JDK 1.4

I HAVE APACHE TOMCAT 1.4 WHERE DO I PUT MYSQL DRIVER
Abhiruchi Sharma
  • 55
  • 1
  • 2
  • 9
-1
votes
1 answer

Simple webservice example for JDK 1.4

Can anyone help me to learn developing webservices with jdk 1.4? I'm restricted to JDK 1.4, so I can't use web services which use annotation.
Sastrija
  • 3,284
  • 6
  • 47
  • 64
-2
votes
1 answer

How to use java.util.concurrent.TimeUnit; in jdk 1.4?

driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS); TimeUnit is not supported in my version of Java. How to implement the above logic in JDK 1.4 ? When I am importing TimeUnit like in the statement below it is saying "can't find symbol…
dev666
  • 9
  • 1
-2
votes
1 answer

run a jdk1.4 compiled jar on jdk1.6

I want to run a jdk1.4 compiled jar on jdk1.6. Will there be anything wrong about it. JVM is forward compatible, so I think there will be no problem. Is it true.
1 2 3 4
5