Hi,

here is a bug on my linux (redhat 2.1). I'm not sure if it is a bug of
your port or a bug in Java. (or a bad limitation...)

try to compile and execute this:

public class Iso {
  public static void main(String[] args) {
    IsoäöüÄÖÜß.main(null);
  }
}
class IsoäöüÄÖÜß {
  public static void main(String[] args) {
    System.err.println(">>>>>>>");
  }
}

Here is a trace on my xterm:

vgp% javac Iso.java
vgp% java Iso
java.lang.NoClassDefFoundError: IsoäöüÄÖÜß
        at java.lang.Thread.init(Thread.java)


But, you should note that:

vgp% javap  IsoäöüÄÖÜß
Compiled from Iso.java
synchronized class IsoäöüÄÖÜß extends java.lang.Object
    /* ACC_SUPER bit set */
{
    public static void main(java.lang.String[]);
    IsoäöüÄÖÜß();
}

works, so it is not a problem of CLASSPATH !
Unfortunatly I can't even found a workaround to use special chars in the
name of my classes. Do you have an idea ?

Thank's to let me informed if you send this mail to SUN.
Thank's for your work.

Vincent GAY-PARA, [EMAIL PROTECTED]
Still waiting for JDK1.2 for linux...

Reply via email to