FTP isn't a connection type in
Java ME but HTTP is.
The
Package javax.microedition.io contains interfaces that you need to implement an
HTTP connection, specifically cldc 1.0 has
Interface HttpConnection, and if you target cldc 1.1 there's also
HTTPS, s for secure,
Interface HttpsConnection.
In order to implement the interfaces in the javax.microedition.io.* package, You need to use a static method call from your concrete methods to the methods in the
Connector class.
If you don't know how to make a static method call, it's just [class name][dot][method name], or like:
Then, after you implement the interface, you can hook it up to the stream classes in
Package java.io to help you import or export data.
You can also find an example :
How to send POST data to a web server - Forum Nokia Wiki
As for the web side of the upload, you will probably need a server-side script on the website to upload things via http.