I want to transfer images and files from Android SD Card to PC Server(FTTP Server) using wifi connection? kindly help me if you can......I will appreciate your time and help
here is an example on how to use a wifi connection, from here, you need to use commons ftp to transfer file.
there is an existing question similar to yours.
There are some free apps available that can be used for this. One is SwiFTP: https://market.android.com/details?id=org.swiftp&hl=en
Hope this helps! I couldn't determine from the question whether you'd like to code this kind of app yourself or simply use it to transfer the files.
Related
Trace_MediaProvider.csv was installed in Oppo Mobile Phone, I just wanted to understand what is the use of it. Can't find any answers in google. I Hope someone would help me here. Thanks!
I think it is file and data sharing service used to share at any size and uses to transfer files much faster than http and ftp …….. you can download and read more on the following link: https://fileninja.net/download/056rhJyfda/text_csv/trace_mediaprovider_csv.html
I have a rooted device and I would like my app to read WhatsApp IMs from local database. I know there are a couple of similar questions out there but I couldn't find a working example.
When I manually go to internal storage/WhatsApp/Databases I can see there are a couple of encrypted databases in there:
msgstore.db.crypt12
Can anyone please provide me with a working example?
Note: I don't want to use AccessibilityService/ NotificationsListenerService to read the messages and my device is rooted.
I found that this solution is working
I want to develop an App which is just like snap chat,to send video files to friend.Is there any third party API to do this.What are the possible ways?
One way is using Sockets. You could basicly send information how many bytes the file has and then transfer it to other Socket where you will read it. You should take a look at this question.
Edit:
In this solution you don't need any third party, it is java api.
You can use sockets but you can also use the PubNut API if you want focus in your app and leave the networking to a third party.
I hope this help you.
Socket is good for transferring files, but i think you cannot transfer large files. And your application will allow lots of unwanted/unauthorized video being transferred between users.
You need to learn about XMPP protocol and Open Fire Server, which are widely used by applications like WhatsApp (not sure what they currently using).
This may help you i think...
Try: Here is the example link to transfer files usind asmack and openfire server http://harryjoy.me/2012/08/18/file-transfer-in-android-with-asmack-and-openfire/
I want to transfer some data (app specific data) from an ios device to the android device (and vice versa) running the same application for respective platform.
I understand the easiest way to achieve this is to have a relay server which will take data from one device and pass it on to the other.
However, i would prefer if this could be achieved on a wifi network (peer to peer) without using any kind of server in between (the way they do in multiplayer games).
I tried gamekit but its supposed to work only on ios devices and cant support android. Tried alljoyn as well but its not available for ios yet.
Anyone who has tried this or has some idea on how to proceed are most welcome with their thoughts....
I don't ever try that.... but may be you can do that using XML file...
so
Make the XML file of data which you want to send...
Send that file using bluetooth or using wi-fi programatically...
On another device you can fetch data from xml file..
and that's how you can make this happen....
I want to write the application which will transfer file from android (nexus1) to some other server by using GPRS.which protocol should i use and how to implement that?
HTTP. It's the most reliable protocol on a mobile device. There are plenty of libraries (including built into Android) that will aid you in that, and I'm sure you can find some good tutorials on the net.