這篇文章主要介紹如何實現(xiàn)Android手機通過WIFI和PC連接,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
成都創(chuàng)新互聯(lián)專注于灌陽網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供灌陽營銷型網(wǎng)站建設(shè),灌陽網(wǎng)站制作、灌陽網(wǎng)頁設(shè)計、灌陽網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務(wù),打造灌陽網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供灌陽網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
1.在程序中通過
Runtime.getRuntime().exec("su");
獲得手機root權(quán)限(手機必須是root之后的)。
2.重新啟動adbd
exec("stop adbd"); exec("start adbd");
3.與PC建立連接(我是通過bat文件進程處理的)
/** * 手機連接wifi. * * @param host 手機ip:端口號。例如:192.168.10.124:8888 */ public int connectWifi(String host) { String cmd = ParseProperties.getProperties("dir") + "bin/ConnectWifi.bat " + host; BufferedReader reader = null; int retcode = 0; try { Process process = Runtime.getRuntime().exec(cmd); reader = new BufferedReader(new InputStreamReader( process.getInputStream())); @SuppressWarnings("unused") String line = null; String returnLine = null; System.out.println("*****************************"); while ((line = reader.readLine()) != null) { if (line != null) returnLine = line; System.out.println(line); } if (returnLine.trim().startsWith("connected to")) { retcode = SUCCESS; } else if (returnLine.trim().startsWith("already connected to")) { retcode = SUCCESS; } else { retcode = FAILE; } System.out.println("*****************************"); } catch (IOException e) { e.printStackTrace(); retcode = FAILE; } finally { if (reader != null) { try { reader.close(); } catch (Exception e) { e.printStackTrace(); } } } if (retcode == 0) { retcode = FAILE; } return retcode; }
bat文件
bat文件中的內(nèi)用很簡單 adb connect %1
通過上述方法就能通過wifi和PC連接在一起了。注意:手機和PC機要在同一個局域網(wǎng)中。
以上是“如何實現(xiàn)Android手機通過WIFI和PC連接”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
新聞名稱:如何實現(xiàn)Android手機通過WIFI和PC連接
轉(zhuǎn)載來源:http://aaarwkj.com/article10/pjsodo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、品牌網(wǎng)站建設(shè)、網(wǎng)站策劃、手機網(wǎng)站建設(shè)、企業(yè)網(wǎng)站制作、品牌網(wǎng)站設(shè)計
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)