我複製了Horstmann書(第2卷)中的代碼示例,但不明白爲什麼它不起作用。你可以幫我嗎?我試圖刪除IOException異常,但它提出了另一個問題代碼有什麼問題? Horstmann書中的第一個代碼示例
package streams;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Arrays;
import java.util.List;
public class Hello {
public static void main(String[] args) throws IOException
{
String contents = new String(Files.readAllBytes(Paths.get("text.txt")), StandardCharsets.UTF_8);
List<String> words = Arrays.asList(contents.split("\\PL+"));
long count = 0;
for(String w : words)
{
if (w.length() > 12) count++;
}
System.out.println(count);
count = words.stream().filter(w -> w.length() > 12).count();
System.out.println(count);
count = words.parallelStream().filter(w -> w.length() > 12).count();
System.out.println(count);
}
}
請記住,最好將錯誤消息作爲代碼格式的文本發佈,而不是圖像。 –