Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I'm trying to write a program where it reads in parts of a string per each line. For example the user can input:

Item car small
Item toy big

which comes across as this:

Item <item name> <size>

Basically, with this information, I store it into the program, so that whenever the user whats to access it later they can call it. The first string carindicates to the program, that the user is storing another item into the database. My question is, how do I read the input so that I can grab each section of the string item <item name> and <size>.

share|improve this question
The key word you looking for is "parse". You want to parse the input. – Gabe Aug 15 '11 at 5:43

3 Answers

You can use the split method:

Scanner scan = new Scanner(System.in);
String wholeLine = scan.nextLine();
String[] tokens = whileLine.split();

now token[0] should be "Item", token[1] should be "car" and token[2] should be "small", if the user inputs Item car small

share|improve this answer
for(Scanner sc = new Scanner(new File("my-input-file.txt")); sc.hasNext(); ) {
  String[] words = sc.nextLine().split(" ");
  String itemName = words[1];
  String size = words[2];
  // Now store itemName, size in the DB...     
}
share|improve this answer

Read a each line with readLine() method and then use StringTokenizer to get tokens out of it.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.