Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Why don't you want to use libraries? – Taymon Mar 4 '12 at 1:02
1  
What have you tried? – Adam Zalcman Mar 4 '12 at 1:02
I wanted to do it without libraries because I usually try to do things without first, because if I wanted to, I could skip almost everything I do in Java and generate GUIs and everything, but then you learn that much less. When that didn't work, I tried adding the HttpClient library, which for some reason Eclipse couldn't see. I figured I'd ask a question, and since you guys could probably help me either way, I'd ask to do it without a library. – user263078 Mar 4 '12 at 1:06

4 Answers

up vote 1 down vote accepted

Check out this article for the code that does exactly what you describe without third party libraries. Good luck!!

share|improve this answer
1  
This appears to do just what I need. I'll have to move the code around a bit, but this seems perfect. Thanks so much! :D – user263078 Mar 4 '12 at 1:39
Wait... It isn't exactly what I described. Is it possible to change this to allow PHP to use $_FILES[] ? – user263078 Mar 4 '12 at 1:55
Okay... I would assume not. I can change my code server-side to fix it though, it'll just be a bunch of work. – user263078 Mar 4 '12 at 2:02

I realize you specified not using libraries but I would recommend Apache HttpComponents HttpClient.

One problem you will have is encoding your file to include in your post.

share|improve this answer

Do you really mean Java or do you mean JavaScript? Since you mentioned Java I follow this one...

I think the simplest way would be to get the File into a well-formed string, encode it to something which is good for transport (like Base64 which is not very hard to self-implement if you dont want to use libraries) and then you could do a POST-Request by sending the correct HTTP-Request by yourself.

It's not that hard but it's too much to explain here at StackOverflow. I mean at least for sending those HTTP-Headers it is really recommended to use the java libraries.

share|improve this answer

To debug the request and response you can use a program like Fiddler to look at the body of the POST when the browser does it and when the java client is doing it. In your client set the system property java.net.useSystemProxies to true so it will use Fiddler when you're debugging.

If you encode your body as multipart then PHP will put the file in $_FILES. If you do not use multipart encoding then your Java code is much simpler but then your PHP code has to manually process the POST data and save the file on the server side. This would also be more efficient because encoding increases the amount of data that must be sent. I would lean toward not encoding and just sending the data because I believe the encoding will be a pain and I don't think the PHP code to manually process the POST data will be that tricky.

It looks like you can access $HTTP_RAW_POST_DATA to get the POST data in PHP. If the files you need to upload are very big then this will not work. There may be another way.

EDIT:

The accepted answer here shows how to create a multipart POST using Java: How to use java.net.URLConnection to fire and handle HTTP requests?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.