Downloading a file using JSF
问题 Hi I am trying to download a file from server but at the end of my process I end up with only numbers and some weird characters on my browser. It's not downloading the file. I am using seam and JSF 1.2. Here is my code: public void writeBytesToResponse(UploadDefinition _instance, String path) { FacesContext context = FacesContext.getCurrentInstance(); HttpServletResponse response = (HttpServletResponse) context .getExternalContext().getResponse(); try { byte[] bytes = getFile(path); response