Используются два разных символа кавычки. Файл стоп-слов содержит doesn't
, а ваш ввод содержит doesn’t
.
Поскольку кавычки разные, слова не совпадают.
РЕДАКТИРОВАТЬ: Вот слегка переработанное решение, которое генерирует правильный вывод (если вы не используете странные кавычки в вводе, который есть).
import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;
import java.util.stream.Collectors;
public class StopWordsApp {
// the platform-specific end of line token
private static final String EOL = String.format("%n");
private final Set<String> stopWords = new HashSet<>(Arrays.asList(readLines("stopwords.txt")));
public static void main(String[] args) {
StopWordsApp stopWordsApp = new StopWordsApp();
String[] lines = readLines("cleandata.txt");
printLines(stopWordsApp.removeStopWords(lines));
}
private String[] removeStopWords(String[] inputLines) {
return Arrays.stream(inputLines)
// map the String array to a Line object
.map(Line::new)
// map the Line to a String without stop words
.map(this::removeStopWords)
// convert the stream to an array
.toArray(String[]::new);
}
private String removeStopWords(Line line) {
return line.words().stream()
// map the word to its normalized version
.map(Word::normalized)
// remove stop words
.filter(n -> !stopWords.contains(n))
// join into a String separated by spaces
.collect(Collectors.joining(" "));
}
private static String[] readLines(String fileName) {
return readFile(fileName).split(EOL);
}
private static String readFile(String fileName) {
return new Scanner(StopWordsApp.class.getResourceAsStream(fileName), "UTF-8").useDelimiter("\\A").next();
}
private static void printLines(String[] lines) {
for (String line : lines) {
System.out.println(line);
}
}
}
Я извлек отдельные классы для строки:
import java.util.Arrays;
import java.util.List;
import java.util.stream.Collectors;
public class Line {
private final List<Word> words;
public Line(String input) {
String[] wordInputs = input.split("\\s+");
words = Arrays.stream(wordInputs)
// remove empty Strings
.filter(v -> !v.isEmpty())
// map String to a Word object
.map(Word::new)
// collect into a List
.collect(Collectors.toList());
}
public List<Word> words() {
return words;
}
}
.. а для слова:
public class Word {
private final String normalized;
public Word(String input) {
normalized = input
// convert to lower case
.toLowerCase()
// remove everything that's not a lower case letter or a quote
// (the stopwords file only contains lower case letters and quotes)
.replaceAll("[^a-z']", "")
// replace consecutive white space with a single space
.replaceAll("\\s+", " ")
// trim any white space at the edges
.trim();
}
public String normalized() {
return normalized;
}
}
... и пользовательское исключение (во время выполнения):
public class StopWordsException extends RuntimeException {
public StopWordsException(Exception e) {
super(e);
}
}
Я использовал потоки Java 8 везде и добавил комментарии, чтобы объяснить, что происходит.
С вводом:
it Taste nice, doesn't it?
Вывод:
taste nice
P.S. Файлы 'stopwords.txt' и 'cleandata.txt' должны находиться в одном пакете с классом StopWordsApp.