Tagged Questions
For issues relating to setting up or using the Java Development Kit (JDK), version 1.5.
29
votes
13answers
2k 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 ...
22
votes
16answers
33k views
How do I join two lists in Java?
Conditions: do not modifiy the original lists; JDK only, no external libraries. Bonus points for a one-liner or a JDK 1.3 version.
Is there a simpler way than:
List<String> newList = new ...
8
votes
3answers
2k views
TimeZone.setDefault changes in JDK6
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 ...
6
votes
2answers
207 views
Sun JDK 1.5 cannot dereference error with generics
We have a class hierarchy similar to this one:
public class TestDereference {
private static MainInterface mi = new MainInterfaceImpl();
public static void main(String[] args) {
...
6
votes
2answers
11k views
How to redirect verbose garbage collection output to a file?
How to redirect verbose garbage collection output to a file? Suns site shows an example for unix but it doesn't work for windows.
6
votes
8answers
5k views
Cross-platform way to open a file using Java 1.5
I'm using Java 1.5 and I'd like to launch the associated application to open the file. I know that Java 1.6 introduced the Desktop API, but I need a solution for Java 1.5.
So far I found a way to do ...
5
votes
1answer
8k views
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 ...
5
votes
4answers
477 views
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 ...
4
votes
5answers
4k views
Location of 1.5.x JDK source code
I have installed Eclipse 3.3 on Mac OS X and it does not contain the src.zip file I am used to seeing with Windows and Linux installations. Where can I download the complete source code for the Java ...
3
votes
1answer
89 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 ...
3
votes
1answer
208 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 ...
3
votes
3answers
841 views
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 ...
3
votes
3answers
2k views
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 ...
3
votes
1answer
338 views
Gotchas in JDK 6
Are there any gotchas in JDK 6 which did not exist in earlier versions? I am interested in finding out some surprising changes like the following one in the way Timestamp.valueOf() works.
...
2
votes
1answer
28 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
80 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.
2
votes
0answers
114 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
...
2
votes
1answer
123 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 ...
2
votes
3answers
81 views
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 ?
2
votes
1answer
793 views
JSON-Taglib library not working w/ SDK 1.6?
I'm currently working on a project that uses the json-taglib-0.4.1.jar library to do some json communication between front and back end.
That library use to work fine until we migrated to Java 1.6 ...
2
votes
3answers
2k views
Alternative to javax.activation.MimetypesFileTypeMap().getContentType(filename);
I have some code:
import javax.activation.MimetypesFileTypeMap;
...
..
.
String filename = "foo.xls"; // Where this can be any file name .doc, .pdf or whatever
String headerContentType = new ...
2
votes
3answers
1k views
Where are the class files located in JDK folder?
This may sound like a stupid question. Where are the core class files from Sun, like Button.class, located in the JDK installation folder C:\Program Files\Java\jdk1.5.0_12?
Or do the class files ...
2
votes
2answers
2k views
How to compile classes to JDK1.5 when ant is running in JDK1.6
My development environment is running in JDK1.6, and I need to compile some classes so they are compatible with a client running JDK1.5. How would I do this with the 'javac' ant target?
1
vote
1answer
31 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: ...
1
vote
1answer
26 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 ...
1
vote
1answer
48 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
...
1
vote
7answers
145 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
80 views
Java type casting
I have three files:
ScriptProcessor.java:
public interface ScriptProcessor {
public String someMethod();
}
ScriptProcessorDummy.java:
public class ScriptProcessorDummy implements ...
1
vote
2answers
812 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
1
vote
1answer
71 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
116 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 ...
1
vote
1answer
73 views
How to get totalspace and freespace in java1.5? [closed]
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 ...
1
vote
3answers
400 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
108 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
2k views
DIfference between JDK 1.5.0 and 1.6.0 in java [closed]
Possible Duplicate:
Complete list of API changes between 1.5 and 1.6 Java
What are main differences of jdk1.5 and jdk1.6 ? in functionallity wise and also Enhanced new feature wise...any ...
1
vote
1answer
583 views
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 ...
1
vote
2answers
291 views
JAVA 1.5 in OSX 10.6.4
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 ...
1
vote
4answers
601 views
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 ...
1
vote
2answers
69 views
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 ...
1
vote
5answers
304 views
Java generics, explain please
What do T and S mean?
public void main(String... abc) ; what does ... mean? Is ... called generic as well?
1
vote
3answers
9k views
JAXB unmarshalling ignoring namespace turns element attributes into null
I'm trying to use JAXB to unmarshal an xml file into objects but have come across a few difficulties. The actual project has a few thousand lines in the xml file so i've reproduced the error on a ...
1
vote
3answers
2k views
JAXWS code generation and implementation along side Spring for JDK1.5
We're trying to generate source code stubs from a series of WSDLs (each with their own XSDs). We can do this fine and works perfectly under JDK1.6, however we need it to work under JDK1.5.
We're ...
1
vote
2answers
221 views
Resource files for language having characters other than ISO 8859
We are implementing i18n using JSTL and encountered an issue that the resource texts defined in .properties file and having non ISO 8859 characters (e.g. inidic languages) can not be rendered by tag.
...
1
vote
3answers
926 views
SystemTray for jdk 1.5
I am converting code from jdk 1.6 to jdk 1.5 and the code is:
import java.awt.SystemTray;
public static void main(String[] args) {
if (SystemTray.isSupported()) {
SystemTray tray = ...
1
vote
1answer
2k views
Why does JAXB 2.0 with jdk1.5 fail to recognize string enumerations that start with a numeral?
Following is the sample schema I used to try to generate the JAXB classes. What I noticed is that when I have a string type with enumerations, for instance, in my case the stepType, with values ...
1
vote
4answers
464 views
Button text disappearing with 4Gb Ram and IBM Java 1.5
We have a very strange error occurring at a developer site which we are unable to replicate ourselves.
A developer in Poland has recently upgraded his Windows XP Service Pack 3 machine to 4Gb of Ram
...
0
votes
1answer
24 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: ...
0
votes
2answers
61 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 ...
0
votes
1answer
79 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 ...
0
votes
0answers
41 views
Infinitest 5.1.93 not compatible with Springsource Tool Suite 2.8 (Eclipse Juno)?
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 ...