您好,登錄后才能下訂單哦!
Android 中出現java.net.BindException: bind failed: EADDRINUSE 問題解決辦法
看下問題:
try{ DatagramSocket udpSocket = new DatagramSocket(DEFAULT_PORT ); } catch (Exception e) { e.printStackTrace(); } //java.net.BindException: bind failed: EADDRINUSE (Address already in use)
解決方法:
將:udpSocket = new DatagramSocket(DEFAULT_PORT );
改為:
if(udpSocket==null){ udpSocket = new DatagramSocket(null); udpSocket.setReuseAddress(true); udpSocket.bind(new InetSocketAddress(DEFAULT_PORT)); }
問題就解決了
感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。