On 11 May 2004 11:02:18 -0700, Ray Joslyn wrote:
("I need to compile an applet for version java 1.1 ")
....
It is 372 Kb of code, zipped!
....
Or rather, now that I look into it more closely..
8,664 bytes of code (ahem) amongst ..the rest
of the .jar and other support files (in total 372K).
Still, you will probably not get much help
on a project with such complex dependencies.
Trim it to an example uder 20Kb that
demonstrates the problem, and you might
have a good chance of help.
<
http://www.physci.org/codes/sscce.jsp>
That still stands, the aim of your exercise is to
a) ensure that _your_ source does not contain
any post 1.1 methods.
b) compile your source with a -target of 1.1
Assuming the other .jar's are already OK
for 1.1, you should have no problems.
So it is just your 9Kb of code that could
be the problem, but you need to 'detach'
it temporarily from the other parts, to
make it easy to work on.
HTH