摘要: 解题思路: Character.isDigit()方法和String.matches() public static void main(String[] args) { String str = "123458766"; // System.out.println(str.matches("[0- 阅读全文
posted @ 2022-01-27 13:46 安安安happy 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 解题思路: 1.利用StringBuffer/StringBuilder 的内置方法reverse()进行反转。这应该是最简单的方法了。 public static String reversel(String str) { return new StringBuilder(str).reverse 阅读全文
posted @ 2022-01-27 13:25 安安安happy 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 1.解题思路: 利用string的IndexOf()和lastIndexOf()方法,如果字符串中一个字符只出现一次,那么Indexof()和lastIndexOf()肯定指向同一下标。 答案如下: public class demo { public static void main(String 阅读全文
posted @ 2022-01-27 12:51 安安安happy 阅读(68) 评论(0) 推荐(0) 编辑
摘要: 以下是我自己的的实现方式,最最最笨的方法!!! public class demo { public static void main(String[] args) { String str = "gfhgdebhjf"; char[] ch = str.toCharArray(); for(int 阅读全文
posted @ 2022-01-27 09:49 安安安happy 阅读(129) 评论(0) 推荐(0) 编辑
摘要: 结论:端口被占用 1.如何判断端口被占用:Windows系统下,输入以下命令来查看8080端口: netstat -aon|findstr "8080" 2.杀死PID为25040的进程: taskkill /f /t /im 3740 3.启动tomcat服务:成功! 阅读全文
posted @ 2022-01-21 10:34 安安安happy 阅读(245) 评论(0) 推荐(0) 编辑
摘要: ubuntu 版本:24.04.2参考:https://zhuanlan.zhihu.com/p/143156163https://www.itcoder.tech/categories/docker/ 阅读全文
posted @ 2021-10-22 15:11 安安安happy 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 在重置密码前输入mount -o rw, remount / 之后再重置密码,即可,如下图所示 阅读全文
posted @ 2021-10-22 14:06 安安安happy 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 1.在Linux启动前按Esc,直到出现以下画面:一定要在启动条加载完之前按才能得到以下画面的样子 选择Advanced options for ubuntu,出现以下画面:将光标选中(recovery mode)然后按E 按完e之后出现以下画面: 找到recovery nomodeset,将其删掉 阅读全文
posted @ 2021-10-22 14:04 安安安happy 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 1.StackPanel 特点:在StackPanel中从左到右控件依次排列(这时候控件基于上下居中),从上到下依次排列(这时候控件基于左右居中),那么,如何控制StackPanel排列方式呢? 主要属性为: Orientation ——实现了stackPanel中控件的排列方式, 有两个选项(Ho 阅读全文
posted @ 2020-08-03 17:11 安安安happy 阅读(551) 评论(0) 推荐(0) 编辑