Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
you should improve your accept rate: 0% is ... – Alonso Dominguez Jul 20 '12 at 15:14

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.