You are calling a "Message.writeTo". Can you give us more informations on the path you used and other arguments you gave to that method?

You can also try to write to the same outputstream without using Mime4J so that we know if this is related to mime4j or simply something else to do with your setup / filesystem type / permissions.

Stefano

GX GLIX ha scritto:
Hi All

I am getting a "Null charset name" error during parsing, it seems that getCharset(String charsetName) is passed an empty string... I tried the following hack to fix it:

..........
   public static java.nio.charset.Charset getCharset(String charsetName) {
       if(charsetName == null)
           charsetName = "ISO8859-1";
java.nio.charset.Charset c = java.nio.charset.Charset.forName(charsetName);
............

now the result is :

java.io.IOException: Bad file descriptor
    at java.io.FileOutputStream.writeBytes(Native Method)
    at java.io.FileOutputStream.write(FileOutputStream.java:260)
at sun.nio.cs.StreamEncoder$CharsetSE.writeBytes(StreamEncoder.java:336) at sun.nio.cs.StreamEncoder$CharsetSE.implFlushBuffer(StreamEncoder.java:404)
    at sun.nio.cs.StreamEncoder$CharsetSE.implFlush(StreamEncoder.java:408)
    at sun.nio.cs.StreamEncoder.flush(StreamEncoder.java:152)
    at java.io.OutputStreamWriter.flush(OutputStreamWriter.java:213)
    at java.io.BufferedWriter.flush(BufferedWriter.java:230)
    at org.mime4j.message.Header.writeTo(Header.java:152)
    at org.mime4j.message.BodyPart.writeTo(BodyPart.java:39)
    at org.mime4j.message.Multipart.writeTo(Multipart.java:178)
    at org.mime4j.message.Message.writeTo(Message.java:91)
any ideas anyone?

_________________________________________________________________
FREE pop-up blocking with the new MSN Toolbar - get it now! http://toolbar.msn.click-url.com/go/onm00200415ave/direct/01/


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





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

Reply via email to