您好,登錄后才能下訂單哦!
這篇文章主要介紹如何實現Android手機通過WIFI和PC連接,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
1.在程序中通過
Runtime.getRuntime().exec("su");
獲得手機root權限(手機必須是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文件中的內用很簡單 adb connect %1
通過上述方法就能通過wifi和PC連接在一起了。注意:手機和PC機要在同一個局域網中。
以上是“如何實現Android手機通過WIFI和PC連接”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。