Skip to content

Commit 8d1c5ab

Browse files
authored
Merge pull request eugenp#9707 from Maiklins/JAVA-2096-update-Create-File-article
JAVA-2096 Update "Create File" article
2 parents 0752286 + f0711c5 commit 8d1c5ab

File tree

6 files changed

+145
-1
lines changed

6 files changed

+145
-1
lines changed

core-java-modules/core-java-io-2/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ This module contains articles about core Java input and output (IO)
1313
- [How to Copy a File with Java](https://www.baeldung.com/java-copy-file)
1414
- [Create a Directory in Java](https://www.baeldung.com/java-create-directory)
1515
- [Java IO vs NIO](https://www.baeldung.com/java-io-vs-nio)
16-
- [[<-- Prev]](/core-java-modules/core-java-io)
16+
- [[<-- Prev]](/core-java-modules/core-java-io)[[More -->]](/core-java-modules/core-java-io-3)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## Core Java IO
2+
3+
This module contains articles about core Java input and output (IO)
4+
5+
### Relevant Articles:
6+
- [Java – Create a File](https://www.baeldung.com/java-how-to-create-a-file)
7+
- [[<-- Prev]](/core-java-modules/core-java-io-2)
+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project
3+
xmlns="http://maven.apache.org/POM/4.0.0"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
6+
<modelVersion>4.0.0</modelVersion>
7+
<artifactId>core-java-io-3</artifactId>
8+
<version>0.1.0-SNAPSHOT</version>
9+
<name>core-java-io-3</name>
10+
<packaging>jar</packaging>
11+
<parent>
12+
<groupId>com.baeldung.core-java-modules</groupId>
13+
<artifactId>core-java-modules</artifactId>
14+
<version>0.0.1-SNAPSHOT</version>
15+
<relativePath>../</relativePath>
16+
</parent>
17+
18+
<dependencies>
19+
<!-- utils -->
20+
<dependency>
21+
<groupId>com.google.guava</groupId>
22+
<artifactId>guava</artifactId>
23+
<version>${guava.version}</version>
24+
</dependency>
25+
<!-- utils -->
26+
<dependency>
27+
<groupId>commons-io</groupId>
28+
<artifactId>commons-io</artifactId>
29+
<version>${commons-io.version}</version>
30+
</dependency>
31+
<!-- logging -->
32+
<dependency>
33+
<groupId>log4j</groupId>
34+
<artifactId>log4j</artifactId>
35+
<version>${log4j.version}</version>
36+
</dependency>
37+
<dependency> <!-- needed to bridge to slf4j for projects that use the log4j APIs directly -->
38+
<groupId>org.slf4j</groupId>
39+
<artifactId>log4j-over-slf4j</artifactId>
40+
<version>${org.slf4j.version}</version>
41+
</dependency>
42+
<!-- test scoped -->
43+
<dependency>
44+
<groupId>org.assertj</groupId>
45+
<artifactId>assertj-core</artifactId>
46+
<version>${assertj.version}</version>
47+
<scope>test</scope>
48+
</dependency>
49+
<!-- https://mvnrepository.com/artifact/com.github.tomakehurst/wiremock -->
50+
<dependency>
51+
<groupId>com.github.tomakehurst</groupId>
52+
<artifactId>wiremock</artifactId>
53+
<version>${wiremock.version}</version>
54+
<scope>test</scope>
55+
</dependency>
56+
57+
</dependencies>
58+
59+
<build>
60+
<finalName>core-java-io-3</finalName>
61+
<resources>
62+
<resource>
63+
<directory>src/main/resources</directory>
64+
<filtering>true</filtering>
65+
</resource>
66+
</resources>
67+
<plugins>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-javadoc-plugin</artifactId>
71+
<version>${maven-javadoc-plugin.version}</version>
72+
<configuration>
73+
<source>${maven.compiler.source}</source>
74+
<target>${maven.compiler.target}</target>
75+
</configuration>
76+
</plugin>
77+
</plugins>
78+
</build>
79+
80+
<properties>
81+
<assertj.version>3.6.1</assertj.version>
82+
<maven-javadoc-plugin.version>3.0.0-M1</maven-javadoc-plugin.version>
83+
<wiremock.version>2.26.3</wiremock.version>
84+
</properties>
85+
86+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
package com.baeldung.createfile;
2+
3+
import org.apache.commons.io.FileUtils;
4+
import org.junit.jupiter.api.AfterEach;
5+
import org.junit.jupiter.api.BeforeEach;
6+
import org.junit.jupiter.api.Test;
7+
8+
import java.io.File;
9+
import java.io.IOException;
10+
import java.nio.file.Files;
11+
import java.nio.file.Path;
12+
import java.nio.file.Paths;
13+
14+
import static org.junit.jupiter.api.Assertions.assertTrue;
15+
16+
public class CreateFileUnitTest {
17+
18+
private final String FILE_NAME = "src/test/resources/fileToCreate.txt";
19+
20+
@AfterEach
21+
@BeforeEach
22+
public void cleanUpFiles() {
23+
File targetFile = new File(FILE_NAME);
24+
targetFile.delete();
25+
}
26+
27+
@Test
28+
public void givenUsingNio_whenCreatingFile_thenCorrect() throws IOException {
29+
Path newFilePath = Paths.get(FILE_NAME);
30+
Files.createFile(newFilePath);
31+
}
32+
33+
@Test
34+
public void givenUsingFile_whenCreatingFile_thenCorrect() throws IOException {
35+
File newFile = new File(FILE_NAME);
36+
boolean success = newFile.createNewFile();
37+
assertTrue(success);
38+
}
39+
40+
@Test
41+
public void givenUsingGuava_whenCreatingFile_thenCorrect() throws IOException {
42+
com.google.common.io.Files.touch(new File(FILE_NAME));
43+
}
44+
45+
@Test
46+
public void givenUsingCommonsIo_whenCreatingFile_thenCorrect() throws IOException {
47+
FileUtils.touch(new File(FILE_NAME));
48+
}
49+
50+
}

core-java-modules/core-java-io-3/src/test/resources/dummy.txt

Whitespace-only changes.

core-java-modules/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272

7373
<module>core-java-io</module>
7474
<module>core-java-io-2</module>
75+
<module>core-java-io-3</module>
7576
<module>core-java-io-apis</module>
7677
<module>core-java-io-conversions</module>
7778
<module>core-java-io-conversions-2</module>

0 commit comments

Comments
 (0)