摘要: 使用isReachable,IP小的可以ping通,xx.xx.11.11可以,xx.xx.100.100不通 InetAddress geek = InetAddress.getByName("192.168.188.105"); System.out.println(geek.isReachab 阅读全文
posted @ 2023-09-26 22:23 txwtech 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 1. 地址获取 和 编码解码 public class Net { public static void main(String[] args) throws IOException { // TODO Auto-generated method stub InetAddress ip = Inet 阅读全文
posted @ 2023-09-26 21:54 txwtech 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 安卓通过Spinner实现combo组合框的方法 布局文件添加一个spinner控件,设置名字: spinner_combox_exec_url array_spinner=new String[2]; array_spinner[0]="http://192.168.10.103:9926"; a 阅读全文
posted @ 2023-09-26 14:05 txwtech 阅读(27) 评论(0) 推荐(0) 编辑
摘要: Android设置EditText为只读 final EditText editText_msg_show = findViewById(R.id.editText_show_msg); editText_msg_show.setInputType(InputType.TYPE_NULL);// 设 阅读全文
posted @ 2023-09-26 13:36 txwtech 阅读(148) 评论(0) 推荐(0) 编辑
摘要: java中split方法为何不能用小数点(.)做参数?会有异常抛出 但"a.b.c".split(".");得不到预期的结果: a b c 所以必须要 "a.b.c".split("\\."); 用\\才行 代码: public class A { public static void main(S 阅读全文
posted @ 2023-09-26 11:50 txwtech 阅读(31) 评论(0) 推荐(0) 编辑
摘要: Android之EACCES (Permission denied)与Permission denied 1.最直接的就是java.net.ConnectException: socket failed: EACCES (Permission denied)异常,这个只需要在AndroidManif 阅读全文
posted @ 2023-09-26 09:50 txwtech 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/lynchyo/p/3520328.html android.os.NetworkOnMainThreadException 这个异常大概意思是在主线程访问网络时出的异常。 Android在4.0之前的版本 支持在主线程中访问网络,但是在4.0 阅读全文
posted @ 2023-09-26 09:48 txwtech 阅读(937) 评论(0) 推荐(0) 编辑
摘要: java安卓ping IP 测试IP网络是否通畅 public static void sendPingRequest(String ipAddress) throws UnknownHostException, IOException { InetAddress geek = InetAddres 阅读全文
posted @ 2023-09-26 08:38 txwtech 阅读(97) 评论(0) 推荐(0) 编辑