How to send/receive text between Android and Computer?
问题 I want to send a plain or rich text from/to Android <-> Computer, probably to clipboard but not necessarily. How can I do that? I don't want to email or create a file in order write text into it. Does the Android API allow to do that somehow? Maybe via NFC or Bluetooth? I'd like it to be wireless. 回答1: From your android device you can pass String to PC like this . try { Socket socket = new Socket(DESTINATION_ADDRESS, DESTINATION_PORT); // Exmp : Socket socket = new Socket("192.168.0.101", 80)