Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在文本文件中提取文件名。目前,我正在使用标记器。不知何故,并非所有文件名都被正确提取。
这是我的代码:
list = sc.nextLine(); token = new StringTokenizer(list,".txt"); newlist = token.nextToken();
这就是发生的事情:令牌仅提取“Kesiha”替换“Kesihatan”
解决方案?
来自 StringTokenizer 的文档
“delim 参数中的所有字符都是分隔标记的分隔符。”
所以它在“t”上分裂