jdk1.5

javax.swing.grouplayout not exist in jdk 1.5

I developed a java application with netbeans. It used jdk 1.6. It works fine. But now the requirement is I need to build the jar for the application from the .java files in another machine without netbeans and where jdk 1.5 is used. I cannot upgrade that machine to jdk 1.6. Is there any way I could make my java files compile and work ...

Why WebSphere 6.1 (JDK 1.5 Compliant) compiles my JSPs as JDK 1.4?

Our web application is JDK 1.5 compliant, and is running succesfuly on WebSphere 6.1 However, some JSPs we have that contain Java code in 1.5 syntax fail to compile by WebSphere. It seems that for some reason, WebSphere treats the JSPs as 1.4 complient and fails to compile. Any idea why and how to solve this? (Stop writing Java in JSP...

TimeZone.setDefault changes in JDK6

Hello I just noticed that JDK 6 has a different approach to setting a default TimeZone than JDK5. Previously the new default would be stored in a thread-local variable. With JDK6 (I just reviewed 1.6.0.18) the implementation has changed, so that if the user can write to the "user.timezone" property, or if there is no SecurityManager i...

URl Switching between subdomain

I have site say http://info.sys.com I want the info in the url to be replaced to knowledge.sys.com when i select knowledge tab in my website. info.sys.com should be replaced to knowledge.sys.com when i select knowledge tab. I use jdk 1.5 update 9 and tomcat 6.0.16 Looking forward for your reply. ...

I am confused with Enumerations

If enums are used from jdk1.5 onwards , what was the use of java.util.Enumeration interface before jdk1.5 ? Can anybody help me explore this with an example please ? ...

Eclipse changed JRE for a project

I changed the JRE for a project in eclipse (Sun to JRockit). But when I try to run a class with main method I get a pop-up error message "Could not find main class. Program will exit" and "Exception in thread "Main Thread" java.lang.NoClassDefFoundError: Jrockit1/5" in the console. I can see that the project got rebuilt (timestamp of cla...

Most useful or interesting new language features in Java 5 and 6?

I was looking through a code tutorial just now, and found something interesting -- the import static feature introduced in JDK 5: import static org.junit.Assert.assertEquals; public class AdditionTest { private int x = 1; private int y = 1; @Test public void addition() { int z = x + y; assertEquals(2, z); /* ^ this ...

How to set a JVM Timezone Properly

I am trying to run a java program, but it is taking a default GMT timezone instead of a OS defined timezone. My jdk version is 1.5 and the OS is Windows Server Enterprise (2007) Windows has a Central timezone specified, but when I run the following program, it gives me a GMT time. import java.util.Calendar; public class DateTest { ...

Problems with Xalan and Java JDK 1.5

From what I believe and have read online. Sun has decided to include Xalan in JDK 1.5. I am trying to take advantage of this and try to perform an XSLT to spit out multiple files. The problem I encounter: 'Unrecognized XSLTC extension 'org.apache.xalan.xslt.extensions.Redirect:write''" From what I have read on google that i needed to c...

Did we always have to register to download the Java 5 JDK, or is this new Oracle fun?

I could swear that just a couple of months ago I downloaded a copy of the Java 1.5 SE JDK and I did not have to give them information on my first born. Today, I had to go through the register-and-we-will-send-you-a-link-someday dance. I have not received the link yet, so I thought I would ask about it here. What is special about the J...

Why won't Eclipse compile my code in java 1.5 ?

I have installed Eclipse 3.5.2 and the JDK for Java 6. Here's my installed JREs in Eclipse I am trying to compile with an ant build file, part of which looks like this and specifies java 1.5: <target name="compile" depends="build-common, init" description="Compile files. "> <javac srcdir="${src_dir}" destdir="${build_dir}" debug...

Why would a Java application that uses reflection be unable to fully load a class using Groovy

I am working with a learning management system that runs on JBoss, using JDK 1.5_18. There is a way to write classes that it will load at runtime, using reflection, in order to react to set events. When I write the class in POJO the application will successfully find the class. I am always using the full name of the class, and I ensur...

Why can't jdk 1.5 load a jar created with maven? (Bad version number)

I'm using solaris, I created a maven app on jdk 1.6 but using the maven-compiler-plugin to specify the target as 1.5. Here is the snippet of my pom.xml: <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> ...

How do I install older version of JDK on Mac?

I need to install JDK 5 for testing Amazon mechanical turk APIs (which is not fully compatible with JDK 6). On Apple's website, I can only find the latest JDK. Is there a way to get older versions of JDKs for Mac? ...

@Override Snafu

i've create a project/class file in Eclipse Helios using JDK1.6. I had let the eclipse to generate the code for the implementation class of an Interface. public interface Foo { void bar(); } public class FooImpl implements Foo { @Override public void bar() { } } So for so good. Now for some reason, I've imported the p...

JAVA 1.5 in OSX 10.6.4

Hello, I am trying to debug a j2ee application in tomcat using Intellij Idea in an OS X 10.6.4 system. I need it specifically to run over a 1.5 JVM and 1.5 JDK so that the jgroups-all component doesn't crash the application through this error: class: java.lang.ClassNotFoundException: [Lorg.jgroups.Address; at com.opensymphony.osca...

What javac is Netbeans using?

My work project needs to be compiled and run under JDK1.5 and I'm on a Mac. I followed the instructions here to get 1.5 back on Snow Leopard, and it works fine when building from IntelliJ IDEA, or if I'm just in the same directory as the build.xml and try "ant CleanRebuild" When I "Run Target" in NetBeans they're all compiled with the ...

create Web Service client using JDK1.5

Hi folks, I need to create a web service client using JDK1.5 ... Is it possible ? I know in JDK1.6 there are a wsimport utility that generates the artifacts for the service, and hered that earlier versions used wsdl2java, but cannot found in my JDK installation . java -version java version "1.5.0_05" Java(TM) 2 Runtime Environment, St...