DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=29542>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=29542

zip/zipfileset just ignore files with Umlauts





------- Additional Comments From [EMAIL PROTECTED]  2004-09-21 18:31 -------
Since you're the one having the problem, it should be easiest for you to 
duplicate.  What happens when you compile and run:

public class Open29542 {
  public static void main(String[] args) throws Exception {
    new java.io.FileInputStream("/data/documents/Finanzen/Buchführung.swc");
  }
}

What about this:

public class List29542 {
  public static void main(String[] args) {
    String[] f = new java.io.File("/data/documents/Finanzen/Buchführung.swc")
                  .list();
    for (int i = 0; i < f.length; i++) {
      System.out.println(f[i]);
    }
  }
}

There are your Java programs that could help resolve this...

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to