私はそれがNullPointerExceptionが投げることができると思います。 nextTokenのコードを()検査
、ここ
public String nextToken() {
/*
* If next position already computed in hasMoreElements() and
* delimiters have changed between the computation and this invocation,
* then use the computed value.
*/
currentPosition = (newPosition >= 0 && !delimsChanged) ?
newPosition : skipDelimiters(currentPosition);
/* Reset these anyway */
delimsChanged = false;
newPosition = -1;
if (currentPosition >= maxPosition)
throw new NoSuchElementException();
int start = currentPosition;
currentPosition = scanToken(currentPosition);
return str.substring(start, currentPosition);
}
、メソッドskipDelimitersの呼び出しは()はNullPointerExceptionを投げることができます。
private int skipDelimiters(int startPos) {
if (delimiters == null)
throw new NullPointerException();
int position = startPos;
while (!retDelims && position < maxPosition) {
if (!hasSurrogates) {
char c = str.charAt(position);
if ((c > maxDelimCodePoint) || (delimiters.indexOf(c) < 0))
break;
position++;
} else {
int c = str.codePointAt(position);
if ((c > maxDelimCodePoint) || !isDelimiter(c)) {
break;
}
position += Character.charCount(c);
}
}
return position;
}
null文字列をコンストラクタに渡していませんか? countTokens()は何を返しますか? – Reno
StringTokenzierのコンストラクタに?私はそうとは思わないので、コンストラクタ自体でNullPointerExceptionをスローします。これは私のケースではありません。 – duduamar