整理Python官网给的sample:https://docs.python.org/3/library/http.client.html
Continue readingAndroid作为客户端(client)对服务器(server)进行request操作,并从服务器中得到response。
这里主要使用HTTP来进行数据传输,request有GET和POST两种方式。
完整的项目:https://github.com/lijiancheng0614/android-NetworkConnect
Continue reading整理Python官网给的sample:https://docs.python.org/3/library/socket.html
官网展示了支持IPv4的TCP代码,这里也展示UDP的代码,两者基本类似。
Continue readingCode Hunt SECTOR 02 LOOPS
Continue reading用Java来写一个简单的服务器(server),对客户端(client)的request进行回应。
这个sample主要使用socket来进行演示,分别可以接收与发送string和object。
Continue reading在写Android App时,一些逻辑不能放在UI线程中,于是可能会用到Handler。
Continue reading