The java-util-scanner tag has no wiki summary.
29
votes
7answers
19k views
Scanner vs. StringTokenizer vs. String.Split
I just learned about Java's Scanner class and now I'm wondering how it compares/competes with the StringTokenizer and String.Split. I know that the StringTokenizer and String.Split only work on ...
7
votes
5answers
210 views
Why does “hello\\s*world” not match “hello world”?
Why does this code throw a InputMismatchException ?
Scanner scanner = new Scanner("hello world");
System.out.println(scanner.next("hello\\s*world"));
The same regex matches in http://regexpal.com/ ...
7
votes
4answers
4k views
Scala, read from standard input line by line
What's the Scala recipe for reading line by line from the standard input ? Something like the equivalent java code :
import java.util.Scanner;
public class ScannerTest {
public static void ...
7
votes
2answers
2k views
Problem using the nextLine() and hasNextLine() methods of Scanner
I have a log file containing the following data:
Shortest path(2)::RV3280-RV0973C-RV2888C
Shortest path(1)::RV3280-RV2502C
Shortest path(2)::RV3280-RV2501C-RV1263
Shortest ...
7
votes
6answers
3k views
Is there an equivalent to the Scanner class in C# for strings?
In Java I can pass a Scanner a string and then I can do handy things like, scanner.hasNext(), or scanner.nextInt(), scanner.nextDouble(), etc.
This allows some pretty clean code for parsing a string ...
7
votes
2answers
428 views
Writing a cleaner and more modular command-parser
I'm writing a debugger for a Z80-emulator we are writing in a school project, using Java. The debugger reads a command from the user, executes it, reads another command, etc.
Commands can either be ...
5
votes
3answers
68 views
Java's new Scanner vs Scanner.create()?
I was looking through O'Reillys Java Cookbook (2ed) for some good stuff and found Scanner.create() method about 10 times. But there's no such in the API or class declaration\implementation. Ex: Page ...
5
votes
2answers
4k views
Read next word in java
I have a text file that has following content:
ac und
accipio annehmen
ad zu
adeo hinzugehen
...
I read the text file and iterate through the lines:
Scanner sc = new Scanner(new ...
5
votes
2answers
310 views
Java package scanner - find all classes with a given interface
In C# you can easily read all classes from a given assembly.
I'm looking for equivalent feature in Java. I need this to automatically bind EJB beans to my Guice Module.
5
votes
3answers
9k views
Java's Scanner vs String.split() vs StringTokenizer; which should I use?
I am currently using split() to scan through a file where each line has number of strings delimited by '~'. I read somewhere that Scanner could do a better job with a long file, performance-wise, so I ...
4
votes
2answers
91 views
Java bug? Can't read GB2312 file with Scanner directly
I have a file in GB3212 encoding (Chinese). File is downloaded from here http://lingua.mtsu.edu/chinese-computing/statistics/char/list.php?Which=MO as is with wget under Windows and stored into ...
4
votes
4answers
163 views
Completely stumped on a Java problem
Please Note: I am not "looking for teh codez" - just ideas for algorithms to solve this problem.
This IS a homework assignment. I thought I was in the home stretch, about to finish it out, but the ...
4
votes
4answers
462 views
To find similar words (strings) in two files
I have to validate the similarity of word 1 in file 1 with word 2 in file 2 and so on. if word 1 (file 1).equals to word 2 (file 2), file 3 will be the output to show the True and False. Below is the ...
4
votes
3answers
522 views
Can you jump a scanner to a location in file or scan backwards?
I have a very large text file and I need to gather data from somewhere near the end. Maybe Scanner isn't the best way to do this but it would be very wasteful to start at the top and grab 6000 lines ...
4
votes
6answers
4k views
How to use Scanner to accept only valid int as input
I'm trying to make a small program more robust and I need some help with that.
Scanner kb = new Scanner(System.in);
int num1;
int num2 = 0;
System.out.print("Enter number 1: ");
num1 = kb.nextInt();
...
4
votes
1answer
231 views
Scanner cuts off my String after about 2400 characters
I've got some very basic code like
while (scan.hasNextLine())
{
String temp = scan.nextLine();
System.out.println(temp);
}
where scan is a Scanner over a file.
However, on one particular ...
4
votes
4answers
2k views
Java Scanner newline parsing with regex (Bug?)
I'm developing a syntax analyzer by hand in Java, and I'd like to use regex's to parse the various token types. The problem is that I'd also like to be able to accurately report the current line ...
4
votes
1answer
461 views
Java Scanner won't follow file
Trying to tail / parse some log files. Entries start with a date then can span many lines.
This works, but does not ever see new entries to file.
File inputFile = new File("C:/test.txt");
...
3
votes
4answers
43 views
Scanner help - Java
I was looking for a little help as I'm at my wits end on how to accomplish this.
The assignment is to read in a file that contains state names, the governor of that state and the compensation he ...
3
votes
1answer
31 views
Getting accurate int and String input
I am having trouble reading in strings from the user after reading in an int. Essentially I have to get an int from the user and then several strings. I can successfully get the user's int. However, ...
3
votes
2answers
122 views
Read a very long string from console using Java Scanner takes time?
Currently I'm creating a console program that read a one line with very long String with java Scanner
sample data is more like this
50000 integer in one line separated by white-space,
"11 23 34 ...
3
votes
3answers
110 views
How Do I Safely Scan for Integer Input?
Scanner scanner = new Scanner();
int number = 1;
do
{
try
{
option = scanner.nextInt();
}
catch (InputMismatchException exception)
{
System.out.println("Integers ...
3
votes
3answers
430 views
Scanner issue when using nextLine after nextInt
I've faced an issue when I'm trying to get the user input using Scanner:
import java.util.Scanner;
public class Main
{
public static Scanner input = new Scanner(System.in);
public static ...
3
votes
4answers
130 views
Determining input for Overloaded Method
I'm running into a bit of an issue with determining if the user input is an int or double.
Here's a sample:
public static int Square(int x)
{
return x*x;
}
public static double Square(double ...
3
votes
4answers
405 views
Is it safe not to close a Java Scanner, provided I close the underlying readable?
If I have a method that takes a reader and I want to operate on the reader with a Scanner like so:
Scanner scanner = new Scanner(reader);
while(scanner.hasNext()) {
//blah blah blah
}
is it ...
3
votes
3answers
523 views
java.util.Scanner malfunctioning while reading large files
I wrote a program where I used a Scanner to read lines from log files and parse each line to find something important. It is important that I read every line of the log file. I wrote the following ...
3
votes
3answers
554 views
reading a file using java scanner
One of the lines in a java file I'm trying to understand is as below.
return new Scanner(file).useDelimiter("\\Z").next();
The file is expected to return upto "The end of the input but for the ...
3
votes
1answer
1k views
Parse Text using scanner useDelimiter
Looking to parse the following text file:
Sample text file:
<2008-10-07>text entered by user<Ted Parlor><2008-11-26>additional text entered by user<Ted Parlor>
I would like ...
3
votes
3answers
475 views
Java: scanning string for a pattern
This is probably a quicky. Why does this code not return anything?
import java.util.Scanner;
public class MainClass {
public static void main(String[] args) {
try {
Scanner sc = new ...
3
votes
7answers
3k views
Try/catch in Java
Could someone please give me a hint why this try and catch is not working?
It throws a scanner exception instead of printing the message I expect.
import java.util.*;
import java.io.*;
import ...
3
votes
5answers
2k views
Extract Integer Part in String
What is the best way to extract the integer part of a string like
Hello123
How do you get the 123 part. You can sort of hack it using Java's Scanner, is there a better way?
3
votes
2answers
2k views
how to catch blank input with scanner class in java
I am using the scanner class to capture user input from the command line (strings only), as an alternative to my previous question.
The following seems to work fine, except the blank lines are not ...
3
votes
2answers
725 views
Does a Java Scanner implicitly create a buffer even if you do not pass it one?
If I have the following example file where each number is represents a byte (123 has bytes 1, 2, and 3):
123456789
Let's say I create a FileInputStream. This reads in the binary byte by byte. So ...
2
votes
1answer
24 views
How to stop Scanner changing bytes when inputing data from file in Java?
I am using the Scanner utility in Java to input data from a file like so:
File file = new File("mazes.txt");
Scanner scan = new Scanner(file);
...
2
votes
2answers
27 views
How to Read in 2d array indexs' from a file (IE: Coords) in java
I am writing a Game of life program for my cs class, and I have all that well and good (although I wished I used a different structure now, but oh well). The problem I am having is that I cant read ...
2
votes
2answers
50 views
java exception handling query
public class Employee {
public static void main(String[] args) {
int j=3;
staples[] stemp = new staples[j];
String file_name = ...
2
votes
1answer
125 views
Java Scanner : “0” is not a double
I have a problem with the java Scanner : I'm trying to read doubles using this code :
Scanner sc = new Scanner(System.in);
double value = sc.nextDouble();
However when the number to read is "0.0" ...
2
votes
2answers
76 views
Java: need to get input line while in a GUI, is only working in console
My friends and I have written a program in Java with a GUI, made for touchscreen terminals with no keyboard/mouse. Everything occurs within the GUI, and most of the input is button presses. We want to ...
2
votes
3answers
63 views
Getting NoSuchElementException using Scanner class to read Standard.In after reading in an EOF
So, first off, this is homework, albeit not mine. It's my brother-in-law's. He asked me for help since I do computers, but I only work in C++. He's reading in keyboard input into a file using ...
2
votes
1answer
106 views
Java scanner not going through entire file
I'm writing a program in Java and one of the things that I need to do is to create a set of every valid location for a shortest path problem. The locations are defined in a .txt file that follows a ...
2
votes
1answer
237 views
Reading a text file using BufferedReader and Scanner
I need to read the first n lines of a text file as lines (each line may or may not contain whitespace). The remainder of the text file contains an unknown number N of tokens that are ...
2
votes
6answers
174 views
Java: How to count the no. of lines in a file? [closed]
Possible Duplicate:
Number of lines in a file in Java
I need to count the number of lines of a txt file that is passed to java through a command line argument. I know how to read from a ...
2
votes
2answers
209 views
Updating 2d array through scanner
I'm new to Java, and programming in general. I recently started working with arrays, and came upon an exercise in the book that i thought id give a try. The goal is to read a file using the scanner ...
2
votes
2answers
122 views
Java - Scanner not scanning after a certain number of lines
I'm doing some relatively simple I/O in Java. I have a .txt files that I'm reading from using a Scanner and a .txt file I'm writing to using a BufferedWriter. Another Scanner then reads that file and ...
2
votes
3answers
155 views
java.util.Scanner does not return to Prompt
import java.util.Scanner;
class newClass {
public static void main(String args[]) {
Scanner s = new Scanner(System.in);
while (s.hasNext()) {
...
2
votes
4answers
226 views
Infinite While Loop When InputMidmatchException is caught in try-catch block
I keep getting my code caught in an infinite while loop.
It is nothing to advanced, but i can not figure it out for the life of me!
Someone Please help
I have purplosely just re created the ...
2
votes
2answers
209 views
java.util.Scanner : why my nextDouble() does not prompt?
import java.util.*;
public class June16{
public static void main(String[] args){
Scanner kb = new Scanner(System.in);
double b=0;
boolean checkInput = true;
do{
...
2
votes
1answer
80 views
Take the delimiter that made Scanner to stop
I am using Java's Scanner to parse some text. Say I have set as a delimiter a variety of characters [@$]
With next I get the text till that delimiter, but I would like for a way to learn if parsing ...
2
votes
1answer
103 views
My program isn't reading the file as it's supposed to be
I'm trying to make a int value, which goes up by a counter every second, then when you close the program down, it will the save the value to a .txt file, and then, it SHOULD, when you start up the ...
2
votes
2answers
528 views
Why does hasNextLine() never end?
Sorry if this sounds too simple. I'm very new to Java.
Here is some simple code I was using to examine hasNextLine(). When I run it, I can't make it stop. I thought if you didn't write any input and ...