Bonjour,

Savez vous pourquoi ce code (vu dans la faq) :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
PrintStream ps = null ;
		try {
			ps = new PrintStream(System.out,true,"IBM850");
			System.setOut(ps);
			System.out.println("àâäÂÄéèêëîïÎÏÊËôöÔÖûüùÛÜÿç"); 
		} catch (UnsupportedEncodingException e1) {
			System.err.println("Warning : Cannot change encoding") ;
		}
ne fonctionne pas sur mon postye windows?
J'ai essayé aussi avec ISO-8859-1.

A chaque fois, il m'affiche mal les accents...

Merci pour vos réponse,

Alex.