Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BAEL-9181] Closing Scanner in Java #18397

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion core-java-modules/core-java-scanner/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,17 @@
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.8.2</version>
<scope>test</scope>
</dependency>
</dependencies>
</project>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package com.baeldung.scanner;
import java.util.Scanner;

public class ScannerClose {
public String getGreetingMessage(Scanner scanner) {
System.out.print("Enter your name: ");
String name = scanner.nextLine();
return "Hi, " + name + " Welcome to Baeldung";
}

public static void main(String[] args) {
Scanner scanner = new Scanner(System.in);
try {
ScannerClose example = new ScannerClose();
String message = example.getGreetingMessage(scanner);
System.out.println(message);
} finally {
scanner.close();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package com.baeldung.scanner;
import java.util.Scanner;

public class ScannerTryWithResources {

public String getGreetingMessage(Scanner scanner) {
System.out.print("Enter your name: ");
String name = scanner.nextLine();
return "Hi, " + name + " Welcome to Baeldung";
}

public static void main(String[] args) {
try (Scanner scanner = new Scanner(System.in)) {
ScannerTryWithResources example = new ScannerTryWithResources();
String message = example.getGreetingMessage(scanner);
System.out.println(message);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package com.baeldung.scanner;

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
import java.io.ByteArrayInputStream;
import java.util.Scanner;

public class ScannerCloseUnitTest {
@Test
void givenUserName_whenGetGreetingMessage_thenReturnsWelcomeMessage() {
String input = "Anees\n";
ByteArrayInputStream inputStream = new ByteArrayInputStream(input.getBytes());
Scanner scanner = new Scanner(inputStream);

ScannerClose example = new ScannerClose();
String result = example.getGreetingMessage(scanner);

assertEquals("Hi, Anees Welcome to Baeldung", result);

scanner.close();
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package com.baeldung.scanner;

import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
import java.io.ByteArrayInputStream;
import java.util.Scanner;

class ScannerTryWithResourcesUnitTest {

@Test
void givenUserName_whenGetGreetingMessage_thenReturnsWelcomeMessage() {
String input = "Anees\n";
ByteArrayInputStream inputStream = new ByteArrayInputStream(input.getBytes());

String result;
try (Scanner scanner = new Scanner(inputStream)) {
ScannerTryWithResources example = new ScannerTryWithResources();
result = example.getGreetingMessage(scanner);
}

assertEquals("Hi, Anees Welcome to Baeldung", result);
}
}