JAVA-19116 Create new core-java-compiler sub module under core-java-modules (#13658)
* JAVA-19116 Create new core-java-compiler sub module under core-java-modules
This commit is contained in:
@@ -4,6 +4,5 @@
|
||||
|
||||
- [Getting Started with Java Properties](http://www.baeldung.com/java-properties)
|
||||
- [Java Money and the Currency API](http://www.baeldung.com/java-money-and-currency)
|
||||
- [Compiling Java *.class Files with javac](http://www.baeldung.com/javac)
|
||||
- [Merging java.util.Properties Objects](https://www.baeldung.com/java-merging-properties)
|
||||
- [Illegal Character Compilation Error](https://www.baeldung.com/java-illegal-character-error)
|
||||
|
||||
|
||||
@@ -63,11 +63,6 @@
|
||||
<artifactId>commons-io</artifactId>
|
||||
<version>${commons-io.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.google.gdata</groupId>
|
||||
<artifactId>core</artifactId>
|
||||
<version>${gdata.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -180,7 +175,6 @@
|
||||
<!-- maven plugins -->
|
||||
<javamoney.moneta.version>1.1</javamoney.moneta.version>
|
||||
<spring.core.version>4.3.20.RELEASE</spring.core.version>
|
||||
<gdata.version>1.47.1</gdata.version>
|
||||
</properties>
|
||||
|
||||
</project>
|
||||
@@ -1,16 +0,0 @@
|
||||
package com.baeldung.javac;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public class Data {
|
||||
List<String> textList = new ArrayList();
|
||||
|
||||
public void addText(String text) {
|
||||
textList.add(text);
|
||||
}
|
||||
|
||||
public List getTextList() {
|
||||
return this.textList;
|
||||
}
|
||||
}
|
||||
@@ -1,2 +0,0 @@
|
||||
-d javac-target -verbose
|
||||
com/baeldung/javac/Data.java
|
||||
@@ -1,2 +0,0 @@
|
||||
-d javac-target
|
||||
-verbose
|
||||
@@ -1 +0,0 @@
|
||||
com/baeldung/javac/Data.java
|
||||
@@ -1,3 +0,0 @@
|
||||
-d javac-target
|
||||
-Xlint:rawtypes,unchecked,static,cast,serial,fallthrough
|
||||
com/baeldung/javac/Data.java
|
||||
@@ -1,80 +0,0 @@
|
||||
package com.baeldung.illegalcharacter;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.assertEquals;
|
||||
import static org.junit.jupiter.api.Assertions.assertNotEquals;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.InputStreamReader;
|
||||
import java.io.Reader;
|
||||
import java.nio.charset.StandardCharsets;
|
||||
import java.util.Objects;
|
||||
|
||||
import org.apache.commons.io.ByteOrderMark;
|
||||
import org.apache.commons.io.input.BOMInputStream;
|
||||
import org.junit.Test;
|
||||
|
||||
import com.google.gdata.util.io.base.UnicodeReader;
|
||||
|
||||
public class IllegalCharacterUnitTest {
|
||||
|
||||
final String RESOURCE_FILE_NAME = "bom-file.txt";
|
||||
final InputStream ioStream = this.getClass()
|
||||
.getClassLoader()
|
||||
.getResourceAsStream(RESOURCE_FILE_NAME);
|
||||
final String expected = "Hello world with BOM.";
|
||||
|
||||
@Test
|
||||
public void whenInputFileHasBOM_thenUseInputStream() throws IOException {
|
||||
String line;
|
||||
String actual = "";
|
||||
|
||||
try (BufferedReader br = new BufferedReader(new InputStreamReader(ioStream))) {
|
||||
while ((line = br.readLine()) != null) {
|
||||
actual += line;
|
||||
}
|
||||
}
|
||||
|
||||
assertNotEquals(expected, actual);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void whenInputFileHasBOM_thenUseInputStreamWithReplace() throws IOException {
|
||||
String line;
|
||||
String actual = "";
|
||||
|
||||
try (BufferedReader br = new BufferedReader(new InputStreamReader(Objects.requireNonNull(ioStream), StandardCharsets.UTF_8))) {
|
||||
while ((line = br.readLine()) != null) {
|
||||
actual += line.replace("\uFEFF", "");
|
||||
}
|
||||
}
|
||||
|
||||
assertEquals(expected, actual);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void whenInputFileHasBOM_thenUseBOMInputStream() throws IOException {
|
||||
String line;
|
||||
String actual = "";
|
||||
|
||||
try (BufferedReader br = new BufferedReader(new InputStreamReader(new BOMInputStream(ioStream, false, ByteOrderMark.UTF_8, ByteOrderMark.UTF_16BE, ByteOrderMark.UTF_16LE, ByteOrderMark.UTF_32BE, ByteOrderMark.UTF_32LE)))) {
|
||||
while ((line = br.readLine()) != null) {
|
||||
actual += line;
|
||||
}
|
||||
}
|
||||
|
||||
assertEquals(expected, actual);
|
||||
}
|
||||
|
||||
@Test
|
||||
public void whenInputFileHasBOM_thenUseGoogleGdata() throws IOException {
|
||||
char[] actual = new char[21];
|
||||
|
||||
try (Reader r = new UnicodeReader(ioStream, null)) {
|
||||
r.read(actual);
|
||||
}
|
||||
|
||||
assertEquals(expected, String.valueOf(actual));
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
Hello world with BOM.
|
||||
Reference in New Issue
Block a user