<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</exclusion>
</exclusions>
</dependency>
compile("org.springframework.boot:spring-boot-starter-web") {
exclude module: "spring-boot-starter-tomcat"
}
public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
List<Integer> nums = new ArrayList<>();
System.out.println("Enter the first number:");
boolean active = true;
while(active) {
if (scanner.hasNextInt()) {
nums.add(scanner.nextInt());
continue;
} else {
String exit = scanner.next();
if ("exit".equals(exit)) {
active = false;
}
continue;
}
}
System.out.println("Entered numbers:");
nums.forEach(System.out::println);
}
"выполняй".equals(a)
не выбросит NPEa.equals("выполняй")
выбросит NPEчто многие компании переписывают C# на Java
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Пожалуйста введите ваш рост в (см)");
int x = sc.nextInt();
System.out.println("Рост=" + x);
int y = 100;
int b = 110;
double z = (double) 1.15;
System.out.println("Введите ваш пол:");
String gender = sc.nextLine();
gender = sc.nextLine();
switch (gender) {
case "Мужчина":
double d = (x - y) * z;
System.out.println("Вес=" + d);
break;
case "Женщина":
break;
default:
throw new IllegalStateException("Invalid gender: " + gender);
}
}
https://www.selenium.dev/selenium/docs/api/java/or...
думаю, домен, к которому вы пытаетесь добавить кукисы отличается от домена от которого были получены эти кукисы.
В общем, посмотрите на домены и посмотрите на список кукисов и найдите отличие.