le constructeur avec un boolean c celui ci
FileWriter(String fileName, boolean append)
si le fichier existe
pq ne fait tu pas simplement
FileWriter fwindex=new FileWriter(".."+ File.separator +"bhtml"+File.separator+"index.html",append);
ou sinon tu le crée avant de crée le printwriter
comme ca
voila quelque chose que j avait fait a l epoque
protected PrintWriter getWriter(String fichier, String dir)
{
PrintWriter printwriter = null;
String tmp = dir + "/" + fichier;
File file = new File(tmp);
try
{
(new File(file.getParent())).mkdirs();
file.createNewFile();
printwriter = new PrintWriter(new BufferedWriter(new FileWriter(tmp)));
}
catch(Exception exception)
{
System.out.print("exeption:" + exception + "\n" );
}
return printwriter;
}
[jfdsdjhfuetppo]--Message édité par veryfree le 03-05-2002 à 23:12:20--[/jfdsdjhfuetppo]