Tagged Questions

Java SE version 5 was released in September 2004 and is no longer supported by Sun as of November 2009.

learn more… | top users | synonyms (3)

33
votes
11answers
2k views

Reasons and advantages for upgrading to Java 6 for a non-technical decider (at the client)

I'd like to upgrade from Java 5 to Java 6. We all know about the technical advantages and benefits, but: I have the problem that a major client refuses to upgrade from java 5 to java 6 because of ...
20
votes
6answers
17k views

Java Generics: Generic type defined as return type only

I'm looking at some GXT code for GWT and I ran across this use of Generics that I can't find another example of in the Java tutorials. The class name is com.extjs.gxt.ui.client.data.BaseModelData if ...
14
votes
9answers
1k views

Do you use Java annotations? [closed]

Possible Duplicates: How and where are Annotations used in Java? Java beans, annotations: What do they do? How do they help me? Over and over, I read about Java 5's annotations being an ...
8
votes
3answers
239 views

Why wasn't java.io.Serializable deprecated in Java 5?

In pre Java 5, there were no annotations. As a result you could not add metadata to a class. To mark a class as serializable, you had to implement the Serializable interface (which is just that, a ...
6
votes
5answers
256 views

Best ways to write a method that updates two objects in a multithreaded java environment?

Suppose we have a class called AccountService that manages the state of accounts. AccountService is defined as interface AccountService{ public void debit(account); public void credit(account); ...
6
votes
3answers
186 views

Java version migration deprecated date methods

I'm migrating from Java 1.1. to Java 5. I notice that some methods have been deprecated e.g. java.util.Date has a getYear() method which is deprecated. My question is if the getYear() method is left ...
5
votes
2answers
70 views

Swing ignores first click after decreasing Windows time

I have a Swing application that deals with date and time, so a lot of tests are done changing the system's date and time settings. During the tests, we noticed that after decreasing the clock, the ...
5
votes
5answers
3k views

When should I use the java 5 method cast of Class?

Looking through some code I came across the following code trTuDocPackTypdBd.update(TrTuDocPackTypeDto.class.cast(packDto)); and I'd like to know if casting this way has any advantages over ...
4
votes
1answer
84 views

Java 1.5 JOptionPane paint bug when using panel message/workaround?

I have a JOptionPane with a custom message panel in it, in an application targeted for Java 1.5. The panel contains, among other things, a JTextField. Every 20 invocations or so, nothing in the dialog ...
3
votes
2answers
66 views

How to get today as a string in Java 5?

For example for today I want string as "Sunday". I know how to do this in Java 6: String day = Calendar.getInstance().getDisplayName(Calendar.DAY_OF_WEEK, Calendar.LONG, Locale.getDefault()); But ...
3
votes
3answers
178 views

Will compiling for Java 1.5 on Java 1.7 still work?

I've recently moved to Java 7 in one of my projects. I claim that it can run on Java 1.5 simply because there's nothing I depend on that is in Java 6 or 7. However when compiling today I noticed this: ...
3
votes
6answers
594 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
27 views

Can I ignore BeanCreationException and inject null instead?

We have a situation where our Spring wires up some beans that include ActiveMQ classes built with Java 6. Our application runs on customer's servers, so we can't guarantee that they have Java 6 or ...
2
votes
3answers
354 views

The best singleton pattern since java 5

Since Java5 it is said that the best way to create a singleton is by a single-element enum type. (Which I think is awesome by the way.) Example: public enum SuperSingleton implements Zooma{ ...
2
votes
1answer
488 views

Using EclipseLink MOXy with Java 1.5

Has anyone got EclipseLink MOXy (I'm using eclipselink 2.1.0) to work with Java 5? Whenever I try to unmarshal I get a null pointer exception in org.eclipse.persistence.oxm.record.UnmarshalRecord, in ...
2
votes
2answers
337 views

Java5 on Windows service app - get Full Thread Dump need clarification

I've looked through couple of articles here such as: http://stackoverflow.com/questions/2124672/java-stack-dump-on-windows ...
2
votes
2answers
355 views

FindBugs: How can I run it in Java 5 mode?

When I run FindBugs on my project via Maven, I get lots of these: Can't use annotations when running in JDK 1.4 mode! How do I fix that? Couldn't find anything in the manual.
2
votes
1answer
436 views

How to find out the drag source component in the drop target TransferHandler?

Question is regarding Java 5 and Drag n Drop. Is there a way to determine the drag source component in the drop target TransferHandler? I need to know this in my canImport(..) or importData(..) ...
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
6answers
1k views

what is the use of <T> in public static <T> T addAndReturn(T element, Collection<T> collection){

I am getting confused as and when i come across a generic method of this sort? public static <T> T addAndReturn(T element, Collection<T> collection){ collection.add(element); ...
2
votes
1answer
813 views

What is the easiest way to iterate over all the key/value pairs of a java.util.Map in Java 5 and higher?

What is the easiest way to iterate over all the key/value pairs of a java.util.Map in Java 5 and higher?
2
votes
3answers
682 views

Is there a log4j or commons logging extension or other logging framework that is designed for Java 5 or higher?

Java 5 has introduced many features that can be make logging statements less cluttering, such as variable number of arguments and printf. That can alleviate all the message building code that happens ...
2
votes
1answer
1k views

Convert java 5 code using generics to code that can run on a J2ME device?

Are there any solutions or tools that transform java 5 code that uses all the new java 5 features(generics, autoboxing, varargs, static imports) into code that can run on a J2ME device? I am ...
1
vote
1answer
16 views

Process of Java web application release

Trying to set up the process of releasing Java web applications in order to make sure that there are no memory leaks. It can involve making sure that the code written is of good quality, performance ...
1
vote
3answers
123 views

Porting Arrays.copyOfRange from Java 6 to Java 5

I have some source code that I need to make runnable under Java 5. Unfortunetly that code uses Arrays.copyOfRange function which was only introduced in Java 6. What would be the most effective way to ...
1
vote
4answers
116 views

Java Quickly check for network connection

My issue is fairly straightforward. My program requires immediate notification if a network connection is lost. I'm using Java 5, so I'm unable to use the very handy features of NetworkInterface. ...
1
vote
1answer
278 views

Java 1.5 crash on AIX 5

I have a problem with Java 1.5.0 for AIX. The error happens just when I log on with specific user on AIX (myuser). When I log on with other user java works ok. The error come up even when I executed ...
1
vote
3answers
130 views

Unix shell: Turn file with directory names to ':' separated classpath

I use Java5 and I don't want to point each .jar file in Classpath so I've tried to write small shell script: find $LIB_DIR -name '*.jar' -print > /tmp/classpath CP= cat /tmp/classpath | while ...
1
vote
1answer
134 views

for:each loop in IBM Webphere application server 6.1

I have developed a web application and created war file using Netbeans 6.9. I had used Java 5 features extensively, in both jsp's and java files. After deployment while viewing a jsp page that ...
1
vote
7answers
105 views

Compile another java file from java file

Just out of curiosity. Can we compile & run a java file from another java program? If so, can you send a reference to that knowledge source?
1
vote
1answer
458 views

How to load JAXB within an applet under Java 1.5

I have an applet (packaged as a jar) requires JAXB (jaxb-api-2.1.jar) running fine with Java 1.6. However, when it is under Java 1.5, even with the JAXB classes extracted into the applet jar, I have ...
1
vote
1answer
112 views

Invoking EJB on 1.6 from client on 1.5

I have a Glassfish v3 server running a set of EJBs (under java 1.6 obviously). I have another machine on top of which I have a host java 1.5 - none J2EE - process (i can't change that). The question ...
1
vote
2answers
472 views

How to disable testng test based on a condition

Is there currently a way to disable Testng test based on a condition I know you can currently disable test as so in Testng: @Test(enabled=false, group={"blah"}) public void testCurrency(){ ... } I ...
1
vote
1answer
880 views

(JPA/Toplink) Network error IOException: Address already in use: connect

I have a JPA project which used to work. This month, I have added some data in my database. When I run the usual job (I used to run on preceeding months), I get this error: Exception [TOPLINK-4002] ...
1
vote
3answers
2k views

Pop-up window in Java Swing

Can someone suggest me how to implement a pop-up window in Java Swing. I want the pop-up window to be a modal window (user cannot return to the main window when the pop-up is open). I tried doing it ...
1
vote
3answers
398 views

XML to Java Object only using Java5 (no external libs)

normally I would use JaxB, XMLBeans or Simple to convert a XML file to a Java Object. In this case I can however only use Java5 and no external libraries (for several reasons). What is the best way ...
1
vote
2answers
2k views

send a mail from java5 and java6

I know similar questions have been asked many times befor, but I think this one slitly different :) I'm writing a maven report plugin which will send emails to a list of users. I now have the ...
1
vote
2answers
556 views

Executing Java 5 Code With Java 6

Is there any way I can run class files (i.e. with main as the entry point) on JDK 6 that were compiled with Java 5?
0
votes
1answer
12 views

Compilation issue when class (compiled with java 5) talks to another class (compiled in java 6)

If a java project compiled with jdk 5 talks to another project which is compiled with jdk 6, whether it leads to any compilation issue(s)?. In simple, can a lower version of java talks to higher ...
0
votes
0answers
76 views

JScrollPane added to a CardLayout not displaying in Java 1.6

My application uses Cardlayout with JPanel. On click of a button it should display a JScrollPane. It works fine with Java 1.5, But does not display anything in Java 1.6. Its just blank. I tried ...
0
votes
0answers
127 views

Splash Screen using JDialog and JPanel with Image copyright text and JProgressBar

I have used JDialog box for the splash screen image. JDialog.setDefaultLookAndFeelDecorated(true); this.setSize(img.getIconWidth(), img.getIconHeight()); Dimension screen = ...
0
votes
1answer
25 views

Tools to detect Memory leaks to a certain extent in reasonable timeframe

Am looking for tools to detect Memory Leaks, File open issues in Java based applications written using Netbeans and deployed on Tomcat 6 without having to spend hours, something which can detect these ...
0
votes
2answers
53 views

porting a java6 swing code to java5

I have some code that uses JTabbedPane java 6 extension (it uses the method indexOfTabComponent(Component)) How can I make this code compatible with java 5? Please don't tell me to upgrade to java 6, ...
0
votes
0answers
75 views

Classes loaded increasing steadily in Java 5

I'm curious as to whether this is normal behavior. I didn't think so I used JProbe to take a heap dump after I'd invoked some methods and poked around at my packages to see if any instances of them ...
0
votes
3answers
122 views

Mix Java 5.0 and Java 6.0 Code

I have one module developed under java 5.0 package mypack; class MessageParser { public MessageParser(String s) { ...... } } I have another module developed under java 6.0 import ...
0
votes
5answers
197 views

Enums With Default Throw Clause?

I noticed the following in the Java Language spec in the section on enumerations here: link switch(this) { case PLUS: return x + y; case MINUS: return x - y; case TIMES: return x * y; ...