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 ?