[JavaMail] pb sur getContent
	
	
		Je cherche a faire un reader de mail et  je suis tombé sur ce pb en voulant lire un mail html recu de yahoo :
getContentType donne :
type->text/html; charset=UNKNOWN_PARAMETER_VALUE
et le getContent claque une exception
Une idee pour contourner ce cas ?
java.io.UnsupportedEncodingException: UNKNOWN_PARAMETER_VALUE
        at sun.io.Converters.getConverterClass(Converters.java:218)
        at sun.io.Converters.newConverter(Converters.java:251)
        at sun.io.ByteToCharConverter.getConverter(ByteToCharConverter.java:68)
        at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:224)
        at sun.nio.cs.StreamDecoder$ConverterSD.<init>(StreamDecoder.java:210)
        at sun.nio.cs.StreamDecoder.forInputStreamReader(StreamDecoder.java:77)
        at java.io.InputStreamReader.<init>(InputStreamReader.java:83)
        at com.sun.mail.handlers.text_plain.getContent(text_plain.java:95)
        at javax.activation.DataSourceDataContentHandler.getContent(DataHandler.java:789)
        at javax.activation.DataHandler.getContent(DataHandler.java:536)
Olivier