上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 99 下一页
摘要: 让代码自动对齐的快捷键是Ctrl + Alt + L 翻译 搜索 复制 阅读全文
posted @ 2023-09-27 08:03 txwtech 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 使用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 阅读(244) 评论(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 阅读(28) 评论(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 阅读(156) 评论(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 阅读(250) 评论(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 阅读(1026) 评论(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) 编辑
摘要: 关于手机-》软件信息-》编译编号,连续点击,弹出输入解锁图案,解锁后。退出。 再点击设置-》底部位置,开发者选项-》调试,USB调试,点击打开 翻译 搜索 复制 阅读全文
posted @ 2023-09-22 21:53 txwtech 阅读(99) 评论(0) 推荐(0) 编辑
上一页 1 ··· 30 31 32 33 34 35 36 37 38 ··· 99 下一页