In Java 6 you are relying on varargs and auto-boxing to turn double into Object[]. Varargs and autoboxing were introduced in Java 5.
Hypothetically, you could get String.format to work in Java 1.3 with a double argument, by doing the conversion explicitly; e.g.
String.format("%,.2f", new Object[]{new Double(tranInfo.getAmount()))});
This code would work in Java 1.3 and later versions ... except that String.format was only introduced in Java 1.5 too.
Now if you are somehow getting this to work, then you are not using something that is truly Java 1.3.x. (Perhaps, SCO's Java is not true Java 1.3.x? Perhaps you are compiling on Java 6 with -source set to 1.3? In the latter case, you are likely to get errors when you run the code on Java 1.3.)
In general, there is no guarantee that code written for a newer version of Java will compile with an older version of Java. Getting new code to run on an old platform will typically involve changing the code to avoid the use of newer language features and APIs.
SCO is effectively a dead platform ... killed by SCO's stupidity in trying to extort money from the Linux world. You would be well advised to migrate your applications to something else.
i want a code with String.format() with support in java 1.3 .I suspect its because you have to, not that you want to. ;) – Peter Lawrey Oct 15 '11 at 8:51