I am working on an applet that records voice and uploads to a servlet.
Here is the code of the upload thread in the applet
 class uploadThread extends Thread {
    @Override
    public void run() {
        try {
            //Preparing the file to send
            AudioFileFormat.Type fileType = AudioFileFormat.Type.WAVE;
            File file = File.createTempFile("uploded", ".wav");
            byte audio[] = out.toByteArray();
            InputStream input = new ByteArrayInputStream(audio);
            final AudioFormat format = getFormat();
            final AudioInputStream ais = new AudioInputStream(input, format, audio.length / format.getFrameSize());
            AudioSystem.write(ais, fileType, file);
            //uploading to servlet
        FileInputStream in = new FileInputStream(fileToSend);
        byte[] buf = new byte[1024];
        int bytesread = 0;
        String toservlet = "http://localhost:8080/Servlet/upload";
        URL servleturl = new URL(toservlet);
        URLConnection servletconnection = servleturl.openConnection();
        servletconnection.setDoInput(true);
        servletconnection.setDoOutput(true);
        servletconnection.setUseCaches(false);
        servletconnection.setDefaultUseCaches(false);
        DataOutputStream out = new DataOutputStream(servletconnection.getOutputStream());
        while ((bytesread = in.read(buf)) > -1) {
            out.write(buf, 0, bytesread);
        }
        out.flush();
        out.close();
        } catch (Exception e) {
            e.printStackTrace();
            System.err.println("Error during upload");
        }
    }
}//End of inner class uploadThread
Here is the code of the grab file method in the servlet:
    java.io.DataInputStream dis = null;
    try {
        int fileLength = Integer.valueOf(request.getParameter("fileLength"));
        String fileName = request.getParameter("fileName");
        dis = new java.io.DataInputStream(request.getInputStream());
        byte[] buffer = new byte[fileLength];
        dis.readFully(buffer);
        dis.close();
        File cibleServeur = new File("/Users/nebrass/Desktop/" + fileName);
        FileOutputStream fos = new FileOutputStream(cibleServeur);
        fos.write(buffer);
        fos.close();
    } catch (IOException ex) {
        Logger.getLogger(UploadServlet.class.getName()).log(Level.SEVERE, null, ex);
    } finally {
        try {
            dis.close();
        } catch (Exception ex) {
            Logger.getLogger(UploadServlet.class.getName()).log(Level.SEVERE, null, ex);
        }
    }
I have created a certificate with the keytool. And i have signed the JAR of the applet.
I have added the applet to the jsp file and it is working, and have the all permissions (I tried to save a file on a desktop using the applet)
Update: The problem is that the file is not sent, and when i try to debug the servlet, it is not invoked by the the applet. Please help
 
     
     
    