How do I send an image to a server for post-processing? From server to client is easy, but when it comes to the opposite, which is the best way to proceed?
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 use FTP. Use Apache FTP libraries. Client side: Jakarta commons net: http://commons.apache.org/net/ Server side: Apache FTP Server: http://mina.apache.org/ftpserver/ |
|||
|
|
|
You don't terminate the connection, but send the processed image through the outputstream of the connection on the server side. |
|||
|
|