I would like to, without libraries, POST a file to a PHP script in Java.
This is what the HTML would look like if it actually had a form:
<form action="http://example.com/upload.php" method="post" enctype="multipart/form-data" name="input">
<input type="file" name="image" /><input type="submit" value="Upload file" />
Then I can just grab it/all the information it comes with in PHP with $_FILES["image"].
If I had a file example.png (files will always be PNGs, if that's important) I wanted to upload, how would I do that?
I suppose the simplest way to implement this would be to make a function that takes a File, a URL String, and I guess another name String because we shouldn't assume we always want to POST with the name as image. It would POST the file to that URL under that name and return a String of what the URL returned upon assumed success.