I have a Java applet that needs to upload a file from the user's computer to the server. I am unable to add other libraries (such as com.apache). Is there a low level way of doing so. Currently, I have a php file on the server which contains:
    //Sets the target path for the upload.
    $target_path = "spelling/";
    $_FILES = $_POST;
    var_dump($_FILES);
    move_uploaded_file($_FILES["tmp_name"], $target_path . $_FILES["name"]);
?>
Currently my Java program is sending parameters via POST to this php file. It sends these parameters by POST using the following code:
     try {   
        //Creates a new URL containing the php file that writes files on the ec2.
        url = new URL(WEB_ADDRESS + phpFile);
        //Opens this connection and allows for the connection to output.
        connection = url.openConnection();
        connection.setDoOutput(true);
        //Creates a new streamwriter based on the output stream of the connection.
        OutputStreamWriter wr = new OutputStreamWriter(connection.getOutputStream());
        //Writes the parameters to the php file on the ec2 server.
        wr.write(data);
        wr.flush();
        //Gets the response from the server.
        //Creates a buffered input reader from the input stream of the connection.
        BufferedReader rd = new BufferedReader(new InputStreamReader(connection.getInputStream()));
        String line;
        //Loops through and reads the response. Loops until reaches null line.
        while ((line = rd.readLine()) != null) {
            //Prints to console.
            System.out.println(line);
        }
        //Closes reader and writer.
        wr.close();
        rd.close();
    } catch (Exception e) {
        e.printStackTrace();
    }
This works for POST'ing data but when I try to send a file using this method, nothing happens (no response from the server nor is the file uploaded). If anyone has any hints I would be grateful :)
 
     
    