Tagged Questions
Java 2 SE version 1.4 was released in February 2002, and has reached its End of Service Life on October 30th 2008.
6
votes
3answers
6k views
Alternative to enum in Java 1.4
Since Java 1.4 doesn't have enums I'm am doing something like this:
public class SomeClass {
public static int SOME_VALUE_1 = 0;
public static int SOME_VALUE_2 = 1;
public static int ...
6
votes
5answers
1k views
Backport Java 5/6 features to Java 1.4?
We are stuck with Java2SE v1.4 till the end of 2010. That's really nasty, but we can't help it. What options do we have to use some of the new features already now? I can think of several ways like
...
5
votes
2answers
175 views
What is the Java 1.4.2 equivalent of Pattern.quote()
What would be a Java 1.4.2 equivalent of Pattern.quote?
I was using Pattern.quote() on a URI but now need to make it 1.4.2 compatible.
5
votes
3answers
9k views
How to see if a substring exists inside another string in Java 1.4
How can I tell if the substring "template" exists inside a String in java 1.4
It would be great if it was a non case sensitive check.
Thanks!
3
votes
2answers
155 views
java 1.4 good quality image resize
We have a photo gallery that is using servlets to resize images - we need good performance and decent quality, but we just can't get it right. Also, sadly enough, we have only java 1.4, which leaves ...
3
votes
3answers
441 views
How do you set a timeout on BufferedReader and PrintWriter in Java 1.4?
How does one set a timeout on a BufferedReader and a PrintWriter created using a socket connection? Here is the code I have for the server right now, which works until either the server or the client ...
3
votes
3answers
223 views
How can I mock static methods in Java 1.4?
I'm using JUnit with Mockito. PowerMock can mock static methods but it doesn't seem to be possible to use it with Java 1.4, specially since it needs annotations.
Is there any other alternative?
...
3
votes
5answers
730 views
How to debug Java OutOfMemory exceptions?
What is the best way to debug java.lang.OutOfMemoryError exceptions?
When this happens to our application, our app server (Weblogic) generates a heap dump file. Should we use the heap dump file? ...
3
votes
3answers
430 views
How To Replace @Resource Annotation with Java 1.4 Compliant Version
I have a test class that has a @Resource annotation for a setter and I need to make it Java 1.4 compliant, so obviously the annotation has to go. I'm using Spring.
So, how would I replace something ...
3
votes
3answers
516 views
Is Java bytecode compatible with different versions of Java?
If I compile an application using Java 5 code into bytecode, are the resulting .class files going to be able to run under Java 1.4?
If the latter can work and I'm trying to use a Java 5 framework in ...
3
votes
6answers
593 views
Concise explanations of Java language changes in the major revisions
I'm about to jump into Java development again after a number of years. The language revision I worked with was 1.4.2. I know there have been significant changes to the language since then, and I'm ...
2
votes
4answers
410 views
Does Java 1.4 have generics?
Looking at some old code in Java 1.4 but I'm unfamiliar with Java.
So, does it have generics? Haven't found any examples in the code base though.
Thanks!
2
votes
1answer
431 views
2
votes
2answers
581 views
Cryptography - RSA Algorithm in Java 1.4
I am using Java 1.4.2_10 and I am trying to use RSA encryption:
I am getting the NoSuchAlgorithmException for the following code:
cipher = Cipher.getInstance("RSA");
This is the error:
...
2
votes
1answer
462 views
StackOverFlowError while creating Mac object on AS400/Java
I am a newbie to AS400-Java programming. I am trying to create my first program to test the implementation of Message Authentication Code (MAC). I am trying to use the HMACSHA1 hash function. My (Java ...
2
votes
1answer
79 views
Is it possible to complie Java 1.5 source Web Applications to 1.4?
I tried compiling my webapplication with javac ā source 1.5 ā target 1.4 I end up with the error:
javac: source release 1.5 requires target release 1.5
Since Iām using generics and other features; ...
2
votes
4answers
1k views
Web service frameworks for Java 1.4?
We want to implement web services on our Weblogic 8.1 Java 1.4 application. We want to create new server services and call services in other apps. And we need to stick with Java 1.4 (for now).
Due ...
2
votes
3answers
204 views
Null Object When Passed Into An Anonymous Inner Class
When passing a final object (A String in the code below) it shows up as null when printed from the anonymous inner class. However, when a final value type or straight final String is passed in, its ...
2
votes
6answers
865 views
Examples of how to add an iterator to a custom class in Java 1.4?
Could someone give me an example of the best way to add an iterator to a custom class pre Java 5's iterable interface?
Would wrapping a Collection be the best option? Something like
public Iterator ...
1
vote
2answers
48 views
UseConcMarkSweepGC vs UseParallelGC
I'm currently having problems with very long garbage collection times. please see the followig. My current setup is that I'm using a -Xms1g and -Xmx3g. my application is using java 1.4.2. I don't have ...
1
vote
0answers
65 views
JDK1.4.2 doesn't return IPV6 address using getHostAddress
JDK 1.5 above returns the IPV6 addresses fine. But JDK1.4.2 returns only IPV4 addresses. The OS are Windows XP and Windows 7. Anyone manages to get the IPV6 addresses on JDK 1.4.2?
...
1
vote
2answers
132 views
why won't jetty 6.1.x run with java 1.4.2?
Dcoumentation everywhere I can find suggests that jetty 6.1.x should still run with java 1.4.2.
Yet, if I download a jetty binary, and "java -jar start.jar", I get variations of:
"Exception in ...
1
vote
1answer
68 views
3rd Party Library throws NoClassDefFoundError without giving a class name
I'm trying to integrate a 3rd party library into an existing application; it compiles and builds with no problems, but during execution gives a java.lang.NoClassDefFoundError.
The problem is that the ...
1
vote
0answers
63 views
What are default settings used by .net user login control api for AES algorithm?
I am using same user name and password login for a user on two web applications (one in .net 3.5 and other in java 1.4). Both websites are using different database on same server.For maintaining user ...
1
vote
4answers
1k views
Accessing Windows system variables in Java 1.4
What is the best/foolproof way to get the values of environment variables in Windows when using J2SE 1.4 ?
0
votes
0answers
38 views
Correcting improper JVM in Eclipse Project to use Java Swing [closed]
Possible Duplicate:
Access restriction on class due to restriction on required library rt.jar?
I am having the same problem as Jonas, How do I use Java Swing in Eclipse on Mac OS X?, in ...
0
votes
3answers
29 views
Trouble in installing j2se 1.4 or higher
I have a intel core i3 (not the 2nd generation i3) processor and windows 7 64 bit OS.
Which j2se 1.4 should i install from ...
0
votes
2answers
91 views
Java 1.4 + extendible builder pattern
I've hit a bit of a brick wall when it comes to implementing an extendible class that utilizes the builder pattern in java 1.4. The pattern itself works a treat but I've hit a bit of a brick wall when ...
0
votes
2answers
95 views
Using ActionListener with JButton
So, I am kind of new to programming interfaces with java. I have a menu of JButtons, where each JButton has an action associated with it (so I use new JButton(action)), however once a button is ...
0
votes
0answers
189 views
Apache Axis 1.4 generates diffenent request xml on tomcat 5.5 and oracle ias 10.1.2
I am using Eclipse Galileo with a Maven Plugin to build a JEE Web Application using Apache Axis 1.4 for web service handling.
Oracle IAS 10.1.2 is running Java 1.4.
My Problem is, that a soap request ...
0
votes
0answers
278 views
Call REST webservice from Java 1.4
I want to call a REST webservice using a POST-method from a Java 1.4 environment (Weblogic 8.1). The webservice accepts a Order-object. Currently I'm doing something like:
String xml = new ...
0
votes
0answers
90 views
SAML autentification using Java 1.4 and Weblogic 8.1
I want to access some webservices, which require SAML autentification. I already obtain SAML token. How can I propogate it while processing an outbound request using Java 1.4 and Weblogic 8.1?
Thank ...
0
votes
2answers
93 views
Async call using java 1.4
i'm trying to find an easy way to execute an async call using the 1.4 java framework.
It's a very easy example... Run the async method, continue executing actions on main thread an when the async ...
0
votes
1answer
551 views
Deserializing XML using XStream does not work in OSGi (Java 1.4)
I created some OSGi-bundles. One of these has a function to export data to xml using XStream. It just works fine. Also importing again when using the Bundle as library and not within an OSGi context, ...
0
votes
0answers
123 views
java Versioning Problem
Dear all,I am using a Java Rmi application which was developed in java 1.4 version, now i changed my version to java 1.6 but my Rmi application doesn't run properly it having some problem in ...
0
votes
3answers
200 views
0
votes
0answers
179 views
Java 1.4.2 - Single http proxy connection
I need to create a single http proxy connection and i don't want to use java common environment variables such as http.proxyHost and http.proxyPort (should i care about modifying them?).
There is an ...
0
votes
3answers
738 views
Java 1.4 to Java 6 migration
I have some enterprise apps running on Java 1.4. They mostly invoke Stored Procedures on a DB, Parse XML files (at the most few megs large), read and write from and to disk. We have a requirement ...
0
votes
2answers
754 views
To use AES with 256 bits in inbuild java 1.4 api
I am able to encrypt with AES 128 but with more key length it fails.
code using AES 128 is as below.
import java.security.*;
import javax.crypto.*;
import javax.crypto.spec.*;
import java.io.*;
...
0
votes
2answers
358 views
how to call procedure in database asynchronously from java 1.4 code?
platform:
Sql server 2000
java 1.4
ejb 3.0
0
votes
1answer
644 views
java:not able to set auto commit mode with value false in java 1.4 api?
sql server 200
java 1.4
jboss 3
HI am getting exception message
"You cannot set autocommit during a managed transaction"
code is below
try {
try {
connection = getConnection();
} ...
0
votes
1answer
806 views
java 1.4 :how to insert multiple records in a database with one single hit using executeBatch?
i am reading records data from a file(records count can be up to thousands ).Now i want to insert each record in to database.I want to insert all of records in one hit to reduce performance hit. If i ...
0
votes
3answers
378 views
Recommendations for a Java 1.4 MVC framework for Jrun?
I am revisiting a project and need to limit it to Java 1.4 (unfortunately). I was interested in introducing a MVC framework to improve ease of maintenance in the future.
Besides Struts 1, what ...