Reputation: 5379
is possible to upload a file on apache server using commons-fileuploader jar file in android .. if yes then please give any reference site if no then please guide me.
Upvotes: 1
Views: 2218
Reputation: 42969
It is possible, yes.
If you're using Eclipse and the ADT plugin, you just have to do the following things:
You're then ready to go. ADT will automatically convert the classes in the jar file into the dex file format for use in dalvik, and embed them into your APK file.
If you need documentation on how to use the library just follow the user manual: http://commons.apache.org/fileupload/using.html
Upvotes: 2