A simple text scanner which can parse primitive types and strings using regular expressions.
2
votes
2answers
37 views
using scanners to read/find a specific section
I'm new to Java, like many others who ask questions on here, and am curious:
I know you can use scanners to read a file, eg:
Scanner scanner = new Scanner(new File("thing.txt")).useDelimiter(", ");
...
0
votes
1answer
17 views
Scanner to JOptionPane number (double) error
I am trying to convert a BMI calculator program from using scanner to using JOptPane's
Though, when I bring it into the JOp's for some reason the numbers are getting really screwy.
Testing with ...
0
votes
0answers
13 views
Can I create a String variable that will always be the newest nextLine() Scan?
Because creating a new String variable for the next line is only stored as the next line of whatever my printout is, is there a way for me to create a new String variable that will always be the ...
1
vote
1answer
53 views
Scanner Skipping Numbers Java
I am writing code to search through a document and find the numbers and put them into an array. Here is a piece of the document:
username Sam movies id 1 Citizen Kane id 2 Vertigo id 3 Rules of ...
0
votes
1answer
43 views
How to sort a large text file's data into a multi-dimensional array?
I have a very large data file. It starts off with a big paragraph that I want to ignore or remove from the equation, then it has a year e.g. 1974, then 6 spaces, then a number to represent a month, ...
1
vote
2answers
36 views
How to get rid of text at the start of a string?
I have a text file, and it starts off with some text before getting to the data that I need for my program. How do I go about getting rid of this text and pick up only the data behind it?
The file ...
0
votes
2answers
38 views
How to sort a large text file into a multi-dimensional array?
I'm trying to read a large text file and sort it into a 3D array using scanner() but I don't think the array is being populated, and I keep getting the error java.lang.NullPointerException, but I ...
0
votes
2answers
38 views
java scanner hasnext(pattern) conflicts with white space
I wrote this regex ([0-9]{2}:){2}[0-9]{2},[0-9]{3} -> ([0-9]{2}:){2}[0-9]{2},[0-9]{3} to match srt time formats like 00:16:31,600 -> 00:16:35,700 and it works fine when i use it like this: ...
0
votes
1answer
17 views
Basic Syntax for passing a Scanner object as a Parameter in a Function
Here is what I wrote which is pretty basic :
import java.util.Scanner;
public class Projet {
/**
* @param args
* @param Scanner
*/
public static void main(String[] args) {
...
2
votes
2answers
64 views
Add a line at a time to a String
I have this program that lets you open a file and it reads it in to a JTextArea all at once using the following code:
try{
String fileContents = new Scanner(new ...
-3
votes
3answers
36 views
Parameter Scanner [closed]
this is my problem:
I have a method where one of the parameter is a Scanner cons, something like this:
public void buyIngredients (Scanner cons){}
and it's works, but the error is in the main:
...
0
votes
1answer
36 views
Taking input from a text field in one class and scanning it in a different class
I am trying to make a GUI for a program I have completed and do not want to modify. My problem is the program uses a scanner to get user input and I don't know how to get input from the GUI to the ...
1
vote
1answer
38 views
Scanner only reading 1st token of a string
New to the Java Language,
The following is my bit of code. However the whole string isn't written to the file. Only the First token is written to the file. Any Explanations ?
import ...
0
votes
1answer
32 views
Java program throwing NullpointerException [closed]
Would you be able to find out where I am going wrong and why I get this exception.
Exception in thread "main" java.lang.NullPointerException
at battleship.NoShip.wasHit(NoShip.java:30)
at ...
2
votes
1answer
55 views
Print to console while getting user input from Scanner
I'm writing a server program that needs to print information, such as clients connecting or disconnecting, to the console while requesting user input through the java.util.Scanner class. The user ...
0
votes
1answer
38 views
Using a single scanner input to assign two variables in Java
I'm trying to create a method to search an arraylist for a student number (sNumber) that the user inputs, and then with that same input get the indexOf so it can pull data from other arraylists. The ...
0
votes
2answers
39 views
Getting a NoSuchElementsException in Java?
Ok, so for my java class's final project we're supposed to implement a simplified version of craps that runs for 10 rounds. Whenever I run this, I get the NoSuchElementsException for the line "int ...
1
vote
1answer
66 views
is Scanner in Java enough for reading input from a text file?
what i'm going to do
i'm going to build a phone book program in Java to do the following jobs:
read from two text files, instruction.txt and phonebook.txt
phonebook.txt includes some phone entry, ...
1
vote
1answer
23 views
Using Scanner in Java to parse a text file or console input and ran into errors
I am trying to read in values from a file separated by white space between the individual items and carriage returns.
So the text file is something like
1 lunch box 3.99
2 jelly donuts 1.99
4 cases ...
-6
votes
0answers
65 views
Get out of while loop [closed]
i need some help with this code. i cannot seem to figure out how to make it work completely.
this is basically what i have to do
You are to write the code for the method getBigOddValue where the ...
0
votes
2answers
46 views
How do I use a Scanner class to Print a plain text file?
I'm attempting to create a Scanner Class which is supposed to output a plain text file which contains the following information;
PersonName, Address, City, Phone_Number,
PersonName, Address, City, ...
0
votes
5answers
42 views
stuck on creating a new object
I am trying to create a new object called item1, which belongs to the StockItem class. I have already created the constructor for a StockItem inside the class file, making all the variables public, ...
-1
votes
2answers
76 views
take data from a txt file into a 2D array
Thank you all very much for your help both answers work Perfectly.
I have a Lab assigment for Java that I need some help with please.
The assignemnt is to Read a txt that has 28 ints and then place ...
0
votes
2answers
59 views
Program executes Else statement after If statement [closed]
import java.util.Scanner;
import static java.lang.System.out;
import static java.lang.System.in;
public class AI_Core {
/**
* @param args
*/
public static void main(String[] args) {
String ...
0
votes
3answers
32 views
how to get a scanner to read a pre-set variable
i am trying to use a scanner to get user input to add a new item to a stock list i have created, the item must possess the attributes itemID, itemDesc, price, quantity, and reorderlevel.
How would i ...
0
votes
1answer
80 views
How do I write variables to a file in scala and then load them back into scala?
I have a bunch of variables in scala:
triangleCount = 2
lives = 5
triangleScore = 1
curPlayer.getX
curPlayer.getY
When I press "s" in my match case:
case "s" =>
I want the variables to be ...
0
votes
1answer
39 views
Reading a field of type Date by a scanner
private Date startDate;
public void readData(Scanner scanner)
{
// String dates = DateUtil.convertDateToShortString(startDate);
dates = scanner.next();
}
How can I ...
0
votes
3answers
41 views
NoSuchElementException with two ArrayLists
import java.io.File;
import java.io.FileNotFoundException;
import java.util.*;
public class CSVReader
{
public static void main(String[] args) throws FileNotFoundException
{
Scanner scanner = new ...
0
votes
1answer
47 views
Greatest Product of Five Consecutive Digits
I am trying to parse a 50 character String object to an integer. I have been trying to scan in a data file containing 100 lines (each with a 50 digit number) and compute the sum of the numbers.
Every ...
-4
votes
0answers
47 views
How to handle it with scanner class (java)? [closed]
I have a question about scanner class;I have a server generated log text file;it is speaking to a third party payment system;it has list of both success and failure messages;I want to list out the ...
0
votes
3answers
40 views
java scanner to detect 3 words on line
I am trying to write a little program that will use scanner to check if there is a next line (in awhile loop) and then maybe another one to check that the words on the line are tab appart and there ...
3
votes
1answer
36 views
max number of digit int scanner can take
I am trying to read in the user input of credit card number. However I got an input mistmatch after entering 10 digits. Anything below 10 digits works fine for my code.
do{
...
0
votes
3answers
45 views
How do you fix a NoSuchElementException while doing simple file processing?
I have been trying to get this to work since I woke up and I simply cannot figure out what is causing this exception.
try {
scan = new Scanner(new File("dictionary.txt"));
} catch ...
0
votes
2answers
64 views
ArrayIndexOutOfBoundsException for a 2D array
I am trying to create a program that generates chutes and ladders onto 2D array board that is of size 10X10. In order to generate these chutes and ladders, I had to create a method called readBoard ...
-1
votes
2answers
51 views
growing the size of an array based on issue input
I wrote a class that has a 2d array. The class will print out the numbers of an array based on user input and size. For example the user input will be like 2 3 145464. This means that the array size ...
0
votes
1answer
74 views
Scanner read only the first line of a textual file
This is my code
public static void main(String[] args) {
File source = //
Scanner s = null;
int lineNumber =0;
ArrayList<ArrayList<Integer>> tagsArray = ...
-1
votes
1answer
47 views
When I'm using a Scanner to input a String, the program skips a variable
For some reason, when inputting employee names the insertion point skips employee 1 and goes right to employee 2. However, it appears that employee 3 and beyond will input correctly. Here's my ...
0
votes
1answer
26 views
InputMismatchException with Scanner
I have the following Java code:
Scanner input = new Scanner(System.in);
try {
System.out.println("Enter your name>>");
String name = input.next();
...
0
votes
3answers
78 views
ArrayList does not print removed objects
I have a class called Polynomial with an ArrayList made up of term objects, there is an external file that is read by a Scanner object in my test class. The Scanner reads the line for 4 different key ...
2
votes
4answers
66 views
Getting input from user in Console without using Scanner
I would like to know about other ways of getting input from users using other classes like BufferedReader,etc rather than using Scanner class. So, was there any other way of getting input from the ...
1
vote
4answers
60 views
Java Scanner Good Practice
I am reading from a file, and I want to handle the exceptions using try/catch blocks.
I wrote my code. However, eclipse gave me an error with just declaring my scanner object, and I had to initialize ...
0
votes
2answers
33 views
FileNotFoundException when reading from text document
I'm trying to read a file from
public static void printLines(String doc){
Scanner input = null;
input = new Scanner(doc + ".txt"));
while(input.hasNext()){
String nextLine = ...
1
vote
2answers
72 views
How to get ArrayList<Integer> and Scanner to play nice?
import java.util.*;
public class CyclicShiftApp{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
ArrayList<Integer> list = new ...
4
votes
2answers
29 views
Getting unicode values from System.in
I have created a Scanner that gets input from System.in so that I can get input from the console.
Scanner scanner = new Scanner(System.in, "UTF-8");
When I do
String s = scanner.next();
and then ...
0
votes
4answers
64 views
quadratic formula with scanner inputs
Okay so I am a complete Java noob, and I'm trying to create a program for class that runs a quadratic equation using scanner inputs. So far what I've got is this:
import java.util.*;
public class ...
1
vote
1answer
29 views
Beep in InputStream / Scanner
I was viewing this answer and I noticed that the delimiter was set to \\A, which is a beep, right? Why is a beep used in the InputStream? I'm still pretty fuzzy on what a beep even is (Isn't is just ...
0
votes
1answer
39 views
Using useDelimiter to divide data from txt file
I have a data in a text file which is in format:
AB-9, Gregson, Brian, R T, Mr
I want to divide the up into and store the first one, AB-9, in a local variable, I have done all of that but the ...
0
votes
1answer
48 views
reading commands with two words
So i'm doing a program on eclipse in java, and i have to read the commands(input) from the user,
e.g.: ADD <email> <phone>
this is done and it works, my problem is when the input has ...
2
votes
1answer
64 views
Process writing after it's finished?
I have a Process started like that:
Process process = new ProcessBuilder("sh", "-c", "mongod | tee /tmp/logfile.txt");
This process, when it's interrupted, gracefully ends, writing to the output ...
1
vote
2answers
95 views
Interpreting data from an array java
I have an assignment that requires me to take a large dataset, store it in an array, and then create methods that interpret the data in various ways. The file data I am given is in the form like so:
...




