Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have 2 java classes in my web application ,i need to copy them in a dirctory (machine client) specified by the user .So any idea to do this should i upload them in the server (tomcat) ? i tried to retrieve it from the server , but i'm getting no file found :

public void copySeleniumTestAttachmentBusiness(ActionEvent actionEvent){

    ServletContext ctx = (ServletContext) FacesContext.getCurrentInstance().getExternalContext().getContext();

    String utilityClasstDirectoryPath = ctx.getRealPath("Utility.java");
    System.out.println(utilityClasstDirectoryPath);
    String myAnnotClasstDirectoryPath = ctx.getRealPath("MyAnnot.java");

    File utilityClassSource = new File(utilityClasstDirectoryPath);
    File myAnnotClassSource=new File(myAnnotClasstDirectoryPath);

    File desc = new File(testRunDirectory+"/AutomaticTests/src/main/java/");//here's the directory 

    try {
        FileUtils.copyDirectory(utilityClassSource, desc);
        FileUtils.copyDirectory(myAnnotClassSource, desc);

    } catch (IOException e) {
        e.printStackTrace();
    }

}

Any idea how to do it ?

share|improve this question
2  
The .java source files would usually not exist on the server, just the compiled classes, and even those maybe not as individual files, but inside of jars. What are your trying to do (after having copied those files to somewhere)? – Thilo Dec 14 '12 at 11:32
Thank you , i solved the problem by putting the java classes in the web application ressources folder – AmiraGL Dec 14 '12 at 15:38

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.