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

learn more… | top users | synonyms

0
votes
1answer
99 views

How to downgrade the JDK version of Java EE site

I tried to host my java application. But the server has only Tomcat 5.5.4 and JDK version 1.5. The Java EE application I have build is having Tomcat 7.0.34 and JDK 1.7. Now I have been told to down ...
2
votes
1answer
58 views

Java Ant - ERROR [main] - Could not instantiate auxFacto-ry named “DC”

just a short one: I have an application with an Ant-Build File which runs with Java 1.5.0_11. I would like to run the application on Java 1.6.0_31. But if I try to run my App vi a shell skript I get ...
1
vote
1answer
95 views

Why does this Java Mail call fail in JDK 1.5, but succeed in 1.6?

When I run the following code with JDK 1.5, the last line fails, but when I run it with JDK 1.6 it succeeds. Why is this? Code: Session session; session = Session.getDefaultInstance(properties, new ...
1
vote
0answers
42 views

Jitterbit Client start error:

I have installed jittrbit client 4.0.7.14. I am trying to start using jitterbit_client I got following error: The specified Java(TM) Virtual machine '/usr/lib/jvm/jdk1.5.0' is not in the current ...
0
votes
0answers
135 views

GWT compile error with jdk1.5.0_22, works fine with jdk1.5.0_13

I am working on a tomcat web app (tomcat 5.5.30) which consists of GWT widgets (GWT 1.7.0). While running the ant build, the compilation fails with following error: ... ERROR] Unexpected internal ...
1
vote
2answers
111 views

Regex not working in java 1.5

public static final String PATTERN = "(?<=(^|,))(([^\",]+)|\"([^\"]*)\")(?=($|,))"; public static void main(String[] args) { String line = ",1234,ABC"; Matcher matcher = ...
1
vote
1answer
102 views

Error running Maven Project in Eclipse using jdk1.5

OS: Ubuntu 12.10 Eclipse: 4.2 Java: jdk1.5.0_22 and jdk1.7 Apache Maven: 3.0.4 Maven home: /usr/share/maven m2e: 1.2.020120903-1050 I have created a very simple "Hello, World" Maven Project in ...
0
votes
0answers
22 views

Is sonar working on AIX? [closed]

I am wondering if its possible to run sonar on AIX 6 plateflorm. According to http://docs.codehaus.org/display/SONAR/Requirements IBM JDK is not supported and requires Oracle JDK. On Oracle ...
3
votes
1answer
93 views

Alternative for Collections.newSetFromMap to be used in JDK 1.5?

I want to use such "Collections.newSetFromMap()" method in JDK 1.5 which doesnt support it. Also ConcurrentHashSet Class is not supported in java 5. Have to compile following line in JDK 1.5.How do i ...
0
votes
1answer
68 views

Unable to start mysql in JRE6 update 37

I have installed Jre6 update 37 in my product but my JDK version is still 1.5. Since my product is running as server JVM in old versions(i didn't find server folder under jre/bin), i just copied ...
0
votes
1answer
127 views

How to install multiple versions of JDK without destroying current settings?

I'm on an Ubuntu Desktop that is set up with JDK 1.6.34 and everything works great. I'd like to install JDK 1.5.11 in such a way that my environmental variables, etc. don't get "blown out" by the ...
1
vote
0answers
210 views

JDK 1.5.11 security issues on Ubuntu

I'm on Ubuntu Desktop and am trying to install an old version of the JDK (1.5.11) and downloaded the self-extracting BIN file from the official archive download site. I'm doing this because I'm trying ...
0
votes
1answer
116 views

Run small code snippet run with jdk 5 and rest of code with jdk 6

Is it possible to run small code snippet run with jdk 5 and rest of code with jdk 6? Have one code which is working fine with jdk 5. I am going to change it as per jdk 6 but currently don't have time ...
2
votes
0answers
894 views

Bad version number in .class file

I am trying to deploy a webapp in my local Jetty with Maven. My Java -version in command line is java version "1.5.0_22" Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_22-b03) Java ...
0
votes
0answers
159 views

Maven android build gives compile time errors as if it's building with -target=1.5

During my maven build I'm getting errors like this: [ERROR] /sandbox/mobile-apps/quickdroid/test/src/com/xxx/MyActivity.java:[14,21] java.util.LinkedHashMap.Entry has private access in ...
0
votes
2answers
352 views

Compilation failed for ejb

I'm struggling with this problem. It was working for me before, and suddenly when I did some changes in my interfaces and implementation class and when I try to build, I'm getting the following error. ...
0
votes
1answer
89 views

Invoke EJB3 deployed on JbossAS7.1 from oracle 11g stored procedure

As part of our application, we have a requirement to invoke a EJB3 SLSB method from Oracle 11g stored procedure. EJB3 app runs on JbossAS7.1, JbossAS7.1 supports remote lookup of EJB's using its on ...
0
votes
1answer
189 views

Which JDK to compile commons-dbcp-1.2.2 ? (problems with JDK5/6/7)

When I try to compile commons-dbcp-1.2.2 with JDK6/7 I get this error: org.apache.commons.dbcp.BasicDataSource is not abstract and does not override abstract method isWrapperFor(java.lang.Class) ...
1
vote
1answer
443 views

CXF implementation of JAX-WS with JDK 1.5

When I googled, I found out the JAX-WS implementation is coming with JDK 1.6 rt.jar. But I want to use JAX-WS CXF implementation with JDK 1.5. I am not able to find the correct maven dependencies ...
0
votes
2answers
680 views

truncate a Float in java 1.5 excluding setRoundingMode

I want to truncate a float value in Java. Following are my requirements: if i have 12.49688f, it should be printed as 12.49 without rounding off if it is 12.456 in double, it should be ...
2
votes
4answers
513 views

Reusing StringBuffer

I'm aware of the difference between concat, StringBuffer and StringBuilder. I'm aware of the memory issue with the StringBuffer.toString backing array which can explode memory. I'm even aware of the ...
-2
votes
2answers
511 views

Find the latest Eclipse for JDK 1.5 [closed]

What's the latest Eclipse version which supports JDK 1.5? In other words, Min JDK Requirement for Europa - min JDK Version Ganymede - min JDK Version Galileo - min JDK Version Helios - min JDK Version ...
3
votes
2answers
6k views

How Can I Tell Eclipse to Compile and Build a Project with a Different JRE Version than it Normally Does?

I'm not sure if this question has been answered in full or if my title is descriptive enough given my situation, but I've been asked to convert a project from being built with Ant to Maven. That part ...
3
votes
3answers
4k views

Maven - Use JDK 7 to Compile for JVM 5

I've been trying to get this to work for a while now but no luck yet. I want to run with JAVA_HOME pointing to JDK7 but I want to compile a project for JVM 5. I've read through documentation, I've ...
1
vote
1answer
1k views

A WebService annotation is not present on class: java.net.URL

i generated a webservice client in netbeans(jdk1.6) and target client to jdk1.5.03. Then i moved all libs to jdk1.5 classpath and when i run WS Client, i got: ...
2
votes
1answer
409 views

Developing webservice client on jdk1.6 and needs to be compatible with jdk1.5.03

Im trying to run webservice client on jdk1.5 and gives me many errors such as classnotfound exception, nosuchmethod... Its possible to add some libs such as jax-ws, axis... and run it under jdk1.5? ...
2
votes
3answers
1k views

JDK 1.5 Source Code

Where can i find the entire source code for JDK 1.5 to download? I am unable to find the exact link on the oracle site, the link provided only goes in circles.
1
vote
1answer
588 views

getting NoSuchMethodError for getNamespaceContext() when running with jdk 1.5 but not with 1.6

I'm running a program written in java, deployed on an Oracle application Server, running 1.5 JVM.following is the stack trace: Exception in thread "main" java.lang.NoSuchMethodError: ...
0
votes
2answers
270 views

which JDK version required for javapns 2.1?

I want to send push notification to iphone for available new version of the application so I am using <a href='http://code.google.com/p/javapns/'>javapns 2.1</a>. I tried this on my ...
1
vote
1answer
121 views

change the tomcat version 5.5.26 to 6.0.29?

Currently my server is running of the Tomcat 5.5.26 and JDK 1.5.15. Now I want to change to tomcat 6.0.29 and JDK 1.6.29. There was many application running of the current environment so if I can ...
0
votes
1answer
592 views

which ephemeral port has java InetSocketAddress binded to?

What I'd like to achieve bind a server to an ephemeral port for unit testing purposes. My issue : Using the 1.5.0_22 JDK I try to bind an InetSocketAddress on an ephemeral port using port 0 as per ...
1
vote
1answer
138 views

configuring jdk1.4 & jdk1.5 on a linux machine

My web application must run on Jboss3.2.3 and jdk1.4.2_19. I have another java application (X) that requires jdk1.5 on the same machine (AMI Linux). So I need to set my JAVA_HOME to 2 java versions ...
0
votes
1answer
171 views

Infinitest 5.1.93 not compatible with Springsource Tool Suite 2.8 (Eclipse Indigo)?

In a Spring Roo project the tests fail but only when initiated from Infinitest running in Springsource Tool Suite 2.8.0 (STS). As Infinitest 5.1.93 fails to load the Spring context file all tests ...
1
vote
7answers
1k views

Java replace special characters in a string

I have a string like this: BEGIN\n\n\n\nTHIS IS A STRING\n\nEND And I want to remove all the new line characters and have the result as : BEGIN THIS IS A STRING END How do i accomplish this? ...
1
vote
2answers
561 views

Java type casting

I have three files: ScriptProcessor.java: public interface ScriptProcessor { public String someMethod(); } ScriptProcessorDummy.java: public class ScriptProcessorDummy implements ...
1
vote
1answer
1k views

Calling JBoss MBean functions to get threaddump

An application is using JBoss 4.2.2, and I have found it necessary to call listThreadDump(), and I expect it is in ServerInfo. I am thinking the jar I need to find this information is jboss-jmx.jar. ...
1
vote
2answers
2k views

Installing JDK 1.5 on OS X Lion

How to install JDK 1.5 in Lion? I need it to compile Android 2.2. I followed the instruction mentioned in this site, but still couldn't get it to show on Java Preferences. installing jdk 1.5
2
votes
0answers
299 views

Bound values are not getting updated from editable datatable without setting ID in JDK1.5

Bound values are not getting updated from editable data table without setting ID in JDK 1.5. But the same does work without setting ID in JDK 1.6. Does anyone know why? Thanks Code, Bean part ...
1
vote
1answer
163 views

Is it possible to compile PDFRender to run on JRE 1.4?

I would like to use a PDF to image conversion API for Java, PDF-Renderer seems to be quite good. As it's been written for JRE 1.5 compliance, I get alot of compile errors when I try to compile down to ...
1
vote
0answers
230 views

oracle xml parser error when upgrading from jdk 1.4 to jdk 1.5

I am trying to upgrade some legacy code (which uses JDK 1.4) to compile with JDK 1.5. The code uses the Oracle XML parser. The old code(with JDK 1.4) uses xmlparserv2.jar/xschema.jar from Oracle 10g ...
3
votes
1answer
247 views

btrace with JDK5

Can we use bTrace with JDK5 or lesser versions? If not, what is that things which is provided in JDK6 that makes bTrace work? My understanding is that btrace working on Java Byte Code Instrumentation ...
1
vote
1answer
273 views

How to get totalspace and freespace in java1.5? [duplicate]

Possible Duplicate: How to find how much disk space is left using Java? Can somebody tell me how to get freespace and totalspace on java 1.5? I know there is API for java 1.6, getTotalSpace ...
3
votes
1answer
493 views

FileLock changes between java 5 and java 6

In Java 1.5, java.nio.channels.FileLock did not check to see files that were already locked. Referenced Here The snippet states: The java.nio.channels.FileLock class checks for files already ...
0
votes
1answer
440 views

jdk-5 error while building android source code

i am trying to build linux kernel for android emulator(Eclair version). i have downloaded the android source code, and also "$repo sync" was successful. now for Building, when i try to execute ...
2
votes
1answer
247 views

Maven creates class file 50.0, should be 49.0

This is my setup: JDK 1.5 and JDK 1.6 installed, JAVA_HOME points to JDK 1.6 pom.xml uses maven-compiler-plugin with <source>1.5</source> and <target>1.5</target> mvn ...
36
votes
14answers
5k views

Why do people still use primitive types in Java?

Since Java 5, we've had boxing/unboxing of primitive types so that int is wrapped to be java.lang.Integer, and so and and so forth. I see a lot of new Java projects lately (that definitely require a ...
0
votes
3answers
57 views

how and why to update web applications?

Why should we update an application running on Java 1.5 when Java1.6 has replaced Java 1.5 ?How do we do it?
1
vote
3answers
912 views

Can we run resteasy on jdk 1.5

I want to run Resteasy on jdk 1.5 but it requires 1.6 instead. see this: look at jdk version in "depends on" category. Is there a way to run/compile the sources with jdk 5.? Please help.
1
vote
2answers
208 views

GWT: Is Java fully supported by the SDK?

Iam searching for an official announcement for Java 1.5 and JEE5 support by Google's GWT (2.1). I couldnt find any specs which parts of the Java language are officially supported by GWT. Aint there ...
1
vote
1answer
7k views

DIfference between JDK 1.5.0 and 1.6.0 in java [duplicate]

What are main differences of jdk1.5 and jdk1.6 ? in functionallity wise and also Enhanced new feature wise...any one have idea regarding this ?

1 2