我正在创建一个简单创建足球队对象的程序,然后将团队的名称和记录存储在文本文件中。
我正在尝试在我的文件中创建部分但是我可以打印出位于同一大洲的团队。
假装下一行文字是我的文本文件的开头
北美
结束北美
嘿伙计们
如果我希望我在北美的团队对象只能写在这两行文本之间,我该怎么做?
到目前为止我得到的结果不正常,团队名称和记录正在“北美结束”之后打印。
以下是我的代码。
import java.util.*;
import java.io.*;
public class Teams {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
Scanner nameInput = new Scanner(System.in);
System.out.println("Team Creator!");
System.out.println("-----------------------------");
System.out.println("Select an option");
System.out.println("");
System.out.println("1. Create-A-Team");
System.out.println("");
int optionSelection = input.nextInt();
if(optionSelection==1) {
System.out.println("Please enter the name of the team you'd like to create");
String teamName = nameInput.nextLine();
Team team = new Team();
team.createTeam(teamName);
}
}
}
class Team {
String name;
int wins,loses;
boolean northAmericanTeam = true;
public void createTeam(String name) {
Team newTeam = new Team();
newTeam.name = name;
this.wins = 0;
this.loses = 0;
System.out.println("You created " + name + "!");
System.out.println("Wins: " + wins);
System.out.println("Loses: " + loses);
if(northAmericanTeam == true) {
BufferedReader reader = null;
try(PrintWriter write = new PrintWriter(new BufferedWriter(new FileWriter("teaminfo.txt", true)))) {
File file = new File("teaminfo.txt");
reader = new BufferedReader(new FileReader(file));
String line;
String nAmerica ="North America";
while ((line = reader.readLine()) != null) {
System.out.println(line);
if(line.equals(nAmerica)) {
write.println(name+"" + ": Wins[" +wins+"] Loses[" +loses+"]");
write.close();
}
}
}
catch (IOException e) {
e.printStackTrace();
}
finally {
try {
reader.close();
}
catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
答案 0 :(得分:0)
我真的不知道这是否是最好的解决方案,但你可以用模式做到这一点。
private static final Pattern pAmerica = Pattern.compile("End\\sNorth\\sAmerica");
然后,在您的打印机中,您可以匹配它并写下:
while ((line = reader.readLine()) != null) {
System.out.println(line);
Matcher mAmerica = pAmerica.matcher(line);
if(mAmerica.find()) {//Maybe using mAmerica.matches() here can be better
write.println(name+"" + ": Wins[" +wins+"] Loses[" +loses+"]");
write.close();
}
}
永远不要忘记以静态方式编译模式,以确保使用最少的perf,它们很难编译^^
答案 1 :(得分:0)
您假设作者将被放置在读者到达的地方,这是不对的。
例如,当读者到达第5行时,作者仍将尝试在文件末尾写入。
你可以将整个文件(如果它不是那么大)读入StringBuilder然后操作它,然后把我写回文件:
StringBuilder filecontent = new StringBuilder("Yor File Contents");
if (filecontent.indexOf("North America") != -1){
filecontent.insert(filecontent.indexOf("North America\n" + "North America\n".length(), "\n" + name+"" + ": Wins[" +wins+"] Loses[" +loses+"]")
}
// write filecontent.toString() to the File again