Tagged Questions

1
vote
1answer
60 views

Java: Scanner's next() acts differently in Scite and command prompt

I'm trying out a very simple java program that uses Scanner and its method next(), and somehow I encounter a weird situation. Here is the code: import java.util.Scanner; public class Test { ...
1
vote
3answers
5k views

Reading text with Java Scanner next(Pattern pattern)

I am trying to use the Scanner class to read a line using the next(Pattern pattern) method to capture the text before the colon and then after the colon so that s1 = textbeforecolon and s2 = ...
0
votes
5answers
58 views

Do I have to include catch blocks in Java when calling a method that throws exceptions?

i create an android application. and typed some codes just like : public void onCreate(Bundle savedInstanceState) { ... XmlResourceParser xrp = getResources().getXml(R.xml.OneXml); <==OneXml is ...
0
votes
3answers
287 views

Java Scanner, taking user input from console into array list as separate words

I am trying to read the user input from the console directly into an array list, separated by each word or entity that has whitespace on either side (the default behavior). The problem is I am stuck ...
0
votes
3answers
119 views

Punctuation and the .next() method

Does anyone know how the Scanner's .next() method treats punctuation? I couldn't find the answer to this anywhere. I have a program that's reading each word in from a text file and I am unsure of how ...
0
votes
4answers
507 views

Java - nextLine(); within a switch statement

I have a switch statement acting as a menu, in this I am trying to read the users input. Currently I am using variable=in.next(); and this works. However it will only read one word and at points the ...
-1
votes
1answer
52 views

Reading Strings next() and nextLine() Java

The problem is I cant read the variable input with next() cause when I try to split (.split" ") every whitespace then the array just get the first two words I type so I had to use keyboard.nextLine() ...