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.
我想创建一个数据文本文件,使用简单的文件编写器类存储多个用户的用户名密码等,并且做到了。但我不知道使用哪个类来搜索,从我创建的文件中查找和使用它们。请帮忙?
BufferedReader br = new BufferedReader(new FileReader(<your_file>)); String line; while ((line = br.readLine()) != null) { //process here } br.close();
这将是从文件中读取的标准方式。在 while 循环中,你可以做你需要的事情。
如果您指定您的问题,可能会获得更多帮助