Yes, if possible please post the source of the message you are parsing.
That will help us fix the first problem.

Also, make sure you don't close() the OutputStream you are writing to
before your call to Message.writeTo().

/Niklas

Norman Maurer wrote:
> Can you show use the emailcontent ?
>
>
> bye
> Norman
>
> GX GLIX schrieb:
>   
>> 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]
>>
>>
>> !DSPAM:1,462c94fb324321289648189!
>>
>>
>>     
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
>   


-- 
Niklas Therning
www.spamdrain.net


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

Reply via email to