Computer >> Máy Tính >  >> Lập trình >> Android

Làm thế nào để ping IP bên ngoài từ java Android?

Ví dụ này minh họa cách tôi ping IP bên ngoài từ java android.

Bước 1 - Tạo một dự án mới trong Android Studio, đi tới Tệp ⇒ Dự án Mới và điền tất cả các chi tiết cần thiết để tạo một dự án mới.

Bước 2 - Thêm mã sau vào res / layout / activity_main.xml.

     
  Bước 3  - Thêm mã sau vào src / MainActivity.java 

 nhập android.content.Context; nhập android.net.ConnectivityManager; nhập android.net.NetworkInfo; nhập android.support.v7.app.AppCompatActivity; nhập android.os.Bundle; nhập android.widget.Toast; nhập java.io.IOException; public class MainActivity mở rộng AppCompatActivity {Boolean isConnected =false, isWiFi =false, isMobile =false; @Override được bảo vệ void onCreate (Gói đã lưuInstanceState) {super.onCreate (saveInstanceState); setContentView (R.layout.activity_main); ConnectivityManager cm =(ConnectivityManager) this.getSystemService (Context.CONNECTIVITY_SERVICE); NetworkInfo activeNetwork =cm.getActiveNetworkInfo (); if (activeNetwork! =null) {isWiFi =activeNetwork.getType () ==ConnectivityManager.TYPE_WIFI; isMobile =activeNetwork.getType () ==ConnectivityManager.TYPE_MOBILE; isConnected =activeNetwork.isConnectedOrConnecting (); } if (isConnected) {if (isWiFi) {Toast.makeText (this, "Yes, WiF", Toast.LENGTH_SHORT) .show (); if (isConnectedToThisServer ("https://www.google.com/")) {Toast.makeText (this, "Yes, Connected to Google", Toast.LENGTH_SHORT) .show (); } else {Toast.makeText (this, "Không có kết nối Google", Toast.LENGTH_SHORT) .show (); }} if (isMobile) {Toast.makeText (this, "Yes, Mobile", Toast.LENGTH_SHORT) .show (); if (isConnectedToThisServer ("https://www.google.com/")) {Toast.makeText (this, "Yes, Connected to Google", Toast.LENGTH_SHORT) .show (); } else {Toast.makeText (this, "Không có kết nối Google", Toast.LENGTH_SHORT) .show (); }}} else {Toast.makeText (this, "No Network", Toast.LENGTH_SHORT) .show (); }} public boolean isConnectedToThisServer (String host) {Runtime runtime =Runtime.getRuntime (); thử {Process ipProcess =runtime.exec ("/ system / bin / ping -c 1 8.8.8.8" + host); int exitValue =ipProcess.waitFor (); return (exitValue ==0); } catch (IOException e) {e.printStackTrace (); } catch (InterruptException e) {e.printStackTrace (); } trả về false; }} 

Bước 4 - Thêm mã sau vào androidManifest.xml

              

Hãy thử chạy ứng dụng của bạn. Tôi giả sử bạn đã kết nối thiết bị Di động Android thực tế với máy tính của mình. Để chạy ứng dụng từ android studio, hãy mở một trong các tệp hoạt động của dự án của bạn và nhấp vào biểu tượng Chạy từ thanh công cụ. Chọn thiết bị di động của bạn làm tùy chọn, sau đó kiểm tra thiết bị di động sẽ hiển thị màn hình mặc định của bạn -

Làm thế nào để ping IP bên ngoài từ java Android?

Làm thế nào để ping IP bên ngoài từ java Android?