我试图从网址 - http://www.puzzlers.org/pub/wordlists/unixdict.txt
中读取所有单词作为字符串但是只要有'
使用“字符串”构建器而不是连接时,我收到相同的错误。
public static String getUrlContents(String theUrl) throws IOException {
URL url = new URL(theUrl);
URLConnection urlConnection = url.openConnection();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
String line;
String text = "";
while ((line = bufferedReader.readLine()) != null) {
text += line + " ";
}
bufferedReader.close();
return text;
}
输出:
ain'巨大的空白然后继续'd无论如何
并在
之后继续所以它在两个后续'
和'
看起来文本就在那里,因为当我搜索空白之间的antony
时,eclipse会突出显示下面的单词,但它在我的屏幕上看不到:O