[Android] socket on the phone app

Source: Internet
Author: User

1. Mobile Phone Assistant

1.1 USB Link

Can read the phone's PID and VID, determine the only device, you can install the corresponding driver for the phone, etc.

Socket on fixed port communication

1.2 WIFI Link

PC on the computer in the entire network segment to send UDP packets, mobile phone connected after WiFi can listen to this port, received packets, trying to connect with the pc machine to establish a connection

1.3 Bluetooth

pairing with Bluetoothsocket

2. Use

2.1 data volume, high real-time transmission requirements

Chat Tools, Stock trading

Socket long connection, heartbeat packet, send heartbeat packet to server at every second

2.2 small amount of data

Message Push, precision marketing

send UDP packets every ten minutes , and the packet needs to contain authentication information (app + user ID)

ImportJava.util.Timer;ImportJava.util.TimerTask; Public classTimertest {/**     * @paramargs*/     Public Static voidMain (string[] args) {Timer timer=NewTimer (); Timer.schedule (NewTimerTask () {@Override Public voidrun () {System.out.println ("1"); }        }, 1000,1000);//executes after 1 seconds and executes once per second    }}

[Android] socket on the phone app

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.