I'm working on JSF application, and I'm providing some files to be downloaded.
To provide those files I'm using a primefaces componnent <p:fileDownload/>
This conponnent is working with a StreamedContent constructed from an inputStream(Without closing the inputstream).
For me I have a list of files, so my java code to provide the files is :
public ArrayList<StreamedContent> getFiles()
{
files = new ArrayList<StreamedContent>();
InputStream inputStream = null;
try
{
File rapportsDest = new File("C:\\X\\X\\");
String rapports[] = rapportsDest.list();
for (String nomRapport : rapports)
{
inputStream = new FileInputStream("C:\\RGdA_Tools\\Rapports\\" + nomRapport);
StreamedContent file = new DefaultStreamedContent(inputStream, null, nomRapport);
files.add(file);
}
}
JSF code
<c:forEach items="#{fileDownloadController.files}" var="file">
<p:commandLink style="display:block" value="#{file.getName()}"
ajax="false">
<p:fileDownload style="font-color:black" value="#{file}" />
</p:commandLink>
<p:commandLink value="Supprimer" action="#{fileDownloadController.supprimerRapport(file)}" ></p:commandLink>
</c:forEach>
Now as you see there is a function supprimerRapport that should delete the file concerned, this is the code :
public void supprimerRapport(StreamedContent streamedContent)
{
String nom = streamedContent.getName();
try
{
files.get((files.indexOf(streamedContent))).getStream().close();
files.remove((files.indexOf(streamedContent)));
}
catch (IOException e)
{
e.printStackTrace();
}
File f = new File("C:\\X\\X\\" + nom);
if (f.exists() && f.isFile())
{
f.delete();
}
}
So the code close firstly the inputStream, because we can't delete a file with an opened inputStream. But this function does not work correclty, after debuggin, I've placed a breakpoint after i closed the stream files.get((files.indexOf(streamedContent))).getStream().close(); and i've tried to delete the file mannualy from the windows folder but it still beeing used by JVM. Notice : The vaiable nom contrains the correct name of the file, so the path is correcty constructed. No errors when executing the function.
What is wrong?
