系统出来println(“请输入您的名字和姓氏,用空格隔开:”);试试(Scanner scan=new Scanner(System.in)){String s1=scan.next();
int space = s1.indexOf(" ");
String First_Name = s1.substring(0,space);
String init1 = First_Name.substring(0,1);
String Last_Name = s1.substring(space+1,s1.length());
String init2 = Last_Name.substring(0,1);
int First_N = First_Name.length();
int Last_N = Last_Name.length();
System.out.println("You entered the name "+s1+".");
System.out.println("Your first name "+First_Name+": has "+First_N+" characters.");
System.out.println("Your last name "+Last_Name+": has "+Last_N+" characters.");
System.out.println("Your initials are "+init1+init2+".");
你应该使用
String s1 = scan.nextLine();
而不是
String s1 = scan.next();
启动错误 ApplicationContext.若要显示条件报告,请在启用“调试”的情况下重新运行应用程序。2019-10-17 15:44:43.968错误10460--[main]O.S.Boot.SpringApplication:应用程序运行失败 我的pom.xml:
问题内容: 我有一个Python脚本: 但是,当我尝试运行脚本时,Python会引发一个: 我一直在玩我的程序,并且还能够产生其他三个错误: IndentationError: unexpected indent IndentationError: expected an indented block TabError: inconsistent use of tabs and spaces in
似乎每个类只能用Jsoup创建一个get请求,因为当我将替换为时,我放入中的一个会编译,而另一个会出错。 下面是我的代码和错误: 错误: javax.net.ssl.sslhandShakeException:收到致命警报:在java.base/sun.security.ssl.alert.createsslException(alert.java:128)在java.base/sun.secur
波姆。xml 4.0.0org.springframework.bootSpring-引导-启动器-父2.3.2。BUILD-SNAPSHOTcom.javarestful-web-service 0.0.1-SNAPSHOT restful-web-service Spring Boot的演示项目 下面是创建RESTAPI的简单代码
在尝试向表中插入值时,我会遇到以下错误 这是我的顾客席。我正在使用MySql工作台,我正在尝试将我的值插入到这里。 我正在使用这个类将值插入到表中 我的用户表(我在这个表上进行了单元测试)
这是我的密码 新闻.java NewsRepository.java 新闻ervice.java NewsServiceImpl.java NewsController.java 新闻ApiController.java templates.admin.news.create templates.admin.news.index 当我点击链接去templates.admin.news.index,