- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在致力于游戏《Risk》的实现。在构建国家、大陆及其邻接关系的 Board 类中,我正在阅读三个不同的文本文件。当我 build 一个新大陆时,它的 builder 期望以下内容(字符串名称,int BonusArmies,ArrayList memberCountries)。现在,我正在使用扫描仪读取组织如下的文本文件,其名称、所拥有的奖励军队,每一行的其余部分是其成员国。
北美洲,5,阿拉斯加州,艾伯塔省,中美洲,美国东部,格陵兰岛,西北地区,安大略省,魁北克省,美国西部南美洲,2,阿根廷,巴西,委内瑞拉欧洲,5,英国,冰岛,北欧,斯堪的纳维亚半岛,南欧,乌克兰,西欧非洲,3,刚果,东非,埃及,马达加斯加,北非,南非亚洲,7,阿富汗,中国,印度,伊尔库茨克,日本,堪察加半岛,中东,蒙古,暹罗,西伯利亚,乌拉尔,雅库茨克澳大利亚,2,东澳大利亚,印度尼西亚,LotR,新几内亚,西澳大利亚
我知道我需要为扫描仪设置一个分隔符,我尝试了多种方法,但没有成功。这是我尝试创建大陆 HashMap 的示例。
public void createContinents()
{
Scanner inputTwo = new Scanner( new File( "continents.txt");
while( inputTwo.hasNext()) //continues to create and add countries until their are none next
{
String line = inputTwo.nextLine(); //stores the entire line
Scanner lineScan = new Scanner( line); //passes the entire line into Scanner
lineScan.useDelimiter(","); //sets the Scanner's delimiter pattern
String name = inputTwo.next(); //stores the first String which is the name of the current continent being created
System.out.println( " the name is" + name);
int bonusArmies = inputTwo.nextInt(); //stores the second String which is casted into an int for the continent bonus armies
System.out.println(" the number of bonus armies is" + bonusArmies);
ArrayList<Country> memberCountries = new ArrayList<Country>(); //creates an arraylist to hold the member countries of current continent
while( inputTwo.hasNext()) //goes through the rest of the line to add the member countries until it reaches the end of the line
{
memberCountries.add( countries.get(inputTwo.next()));//gets string name of country and pass it as key to store into temp arraylist of countries
System.out.println( "the member countries" + memberCountries);
}
continent = new Continent( name, bonusArmies, memberCountries); //creates continent
continents.put(name , continent); //associates a key to the current continent
}
inputTwo.close();
}
这是该图像中的文本。
PS C:\Users\repti_000\desktop\risk\homeworks2120\game> java BoardTester
the name is
SouthAmerica,2,Argentina,Brazil,Venezuela
Exception in thread "main" java.util.InputMismatchException
at java.util.Scanner.throwFor(Unknown Source)
at java.util.Scanner.next(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at java.util.Scanner.nextInt(Unknown Source)
at Board.createContinents(Board.java:66)
at Board.loadBoard(Board.java:141)
at Board.<init>(Board.java:27)
at BoardTester.main(BoardTester.java:7)
PS C:\Users\repti_000\desktop\risk\homeworks2120\game>
最佳答案
我重命名了扫描仪和一些变量以使其更清晰,并添加了一些带有 CHANGED 的注释。我想知道为什么你的 HashMap 大陆看起来像大陆(名称,大陆),而你存储大陆的名称(正如你用构造函数给出的那样)。使用 Continental.getName() 似乎是更好的做法。
正如 RotN 爵士所指出的,您使用了错误的扫描仪,而且您的名字确实不清楚。尽量让你的变量名称更清晰一些,这应该有助于时间。
public void createContinents() {
// Scan the continents.txt file
Scanner worldScan = new Scanner( new File( "continents.txt");
// While worldScan has a next line, run loop
// CHANGED: not hasNext(), but hasNextLine()
while( worldScan.hasNextLine()) {
// Create a scanner for the selected line in worldScan
String continentLine = inputTwo.nextLine();
Scanner continentScan = new Scanner(continentLine);
continentScan.useDelimiter(",");
// Grab the continent from the scanner
String name = continentScan.next();
System.out.println( " the continent name is" + name);
// Grab the armies from the scanner
// CHANGED: you read it out as a string, not as an int
int bonusArmies = Integer.toString(continentScan.next());
System.out.println(" the number of bonus armies is" + bonusArmies);
// Instantiate loop variable countries
ArrayList<Country> memberCountries = new ArrayList<Country>();
while( continentScan.hasNext()) {
memberCountries.add(countries.get(continentScan.next()));
System.out.println( "the member countries" + memberCountries);
}
// Instantiate loop variable continent
Continent continent = new Continent( name, bonusArmies, memberCountries);
// Add continent to the hashmap
continents.put(name,continent);
continentScan.close();
}
worldScan.close();
}
关于java - 如何使用Scanner的分隔符方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23033893/
使用 ListView.separated 我们可以在列表项之间添加 Divider(),但是,一旦我转换到 SliverList,我就看不到我的分隔线了。 delegate: SliverChild
使用 ListView.separated 我们可以在列表项之间添加 Divider(),但是,一旦我转换到 SliverList,我就看不到我的分隔线了。 delegate: SliverChild
我对 Angular 还很陌生。我有一个由一些数据填充的列表项: {{content.Company}} {{content.Town}}, {{content.P
我正在尝试从 SwiftUI 中的 List 中删除“行”分隔符(在 SwiftUI 中称为分隔符)。 我浏览了 List 文档,但我没能找到它的修饰符。 如有任何帮助,我们将不胜感激。 最佳答案 i
我有一个带有 4 个按钮的网格...1 行 4 列。我正在寻找一种方法将左侧的两个按钮与右侧的两个按钮进行视觉分组。我一直在寻找一种使用分隔符执行此操作的方法,但它似乎与 Grid 一起玩得不好,更喜
我对 R 语言相当陌生。所以我有这个包含以下内容的向量: > head(sampleVector) [1] "| txt01 | 100 | 200 | 123.456
我正在尝试连接两列中的值,当我使用 =CONCAT(A2,",",B2) 时,它将连接两列并获得正确的结果 (P0810,P1)。但我正在寻找的是这样的东西(“P0810”,“P1”)。我尝试了 =C
我在这里创建了一个简单的演示。在 amount 字段编辑时,我想显示 , 分隔符?目前,它仅在不处于编辑模式时显示 ,。知道如何实现这一目标吗? DEMO IN DOJO var data = [{
这里是java菜鸟... 这让我抓狂,因为我知道这很简单,但我已经为此工作了 30 分钟...... 这是来自代码战斗: 对于参数 = ["Code", "Fight", "On", "!"] 且分隔
基于这个pywin32基础script如何向托盘菜单 menu_options 添加分隔符? 我还可以让菜单在左键单击时弹出,而不仅仅是右键单击吗? 最佳答案 将 notify 函数(从 URL 中的
我正在使用这段代码: StringTokenizer tokenizer=new StringTokenizer(line, "::"); 拆分以下字符串: hi my name is visghal
- Dropbox login fix - Updated iris viewer * other aspects are to be improved + fix crash on viewing
我试图在每个菜单组之间显示一个分隔线。我已经尝试过为每个组提供一个唯一的 ID,但这没有用。我找到了一些其他解决方案,但它们看起来有点奇怪,比如创建高度为 1dp 的 LinearLayout。 这是
我想为 CONCAT_WS() 选择一个与字段值不冲突的分隔符例如,如果我选择“,”,则字段值可能包含带有“,”的字符串我想选择一个与字段值不冲突的分隔符:( 最佳答案 来自here : CONCAT
我想知道 Sphinx 引擎是否可以使用任何定界符(如普通 MySQL 中的逗号和句点)。我的问题来自于一种冲动,根本不使用它们,而是逃避它们,或者至少在使用 FULLTEXT 搜索执行 MATCH
我正在尝试使用 svg 或纯 css3 制作 header 分隔符,如下所示: preview from design 在 header 中我有标准的 bootstrap 4 轮播
我在使用 CSS 分隔符时遇到了一些难题。看看:http://jsfiddle.net/fVxC6/1/ .div-line { border-bottom: 1px solid #f0f0f
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 关闭 7 年前。 编辑问题以包含 desired behavior, a specific probl
嘿,我正在尝试使用 getline 读取以下行 (15,0,1,#) (2,11,2,.) (3,20,0,S) 我希望能够将整数提取为 int,将字符提取为 char,但我不知道如何只提取它们。 最
我有 2 列,每边 float 一列,我想使用 1px 宽度的线分隔符,从最长列的顶部到底部。 我宁愿远离 TABLE 布局,而且我不知道哪一个将是最长的列,或者它会有多长。 我怎么能只用 css 做
我是一名优秀的程序员,十分优秀!