0
votes
2answers
41 views

NoSuchElementException When writng to file

I am writing a program that read string and integers from file, then copy the data and write to another file. Data entries should be separated by a space. My input should and output should follow the ...
0
votes
1answer
542 views

Text input with LWJGL

I'm looking for a solution to receive text input through LWJGL. I'm not referring to the kind of standard keyboard event input offered by LWJGL, I'm looking for the ability to receive actual lines of ...
0
votes
1answer
176 views

Homework Help; Reading from multiple files into Vectors/Arrays

Okay my assignment is to read in from 2 separate files. The first file reads in "HallOfFameMember" and should then be stored in a vector. The second should read in and then be stored to an array of ...
1
vote
2answers
292 views

setInputType() causing force close in App

Trying to use a ToggleButton to cycle between a password (*) and plain text EditText. Using Everything the toggle is pressed and the setInputType() runs application force closes code below any help ...
4
votes
4answers
4k views

how to write content in a Specific position in a File

Suppose I have a file named abhishek.txt and that contains the following line I am , and what is your name. Now I want to write Abhishek after "I am" like I am Abhishek, .. How to write ...
0
votes
1answer
687 views

“properly” Manipulate “cursor” when reading an input file when using scanners

Is this the "proper way" to pull a char and string from a line of text in a .txt input file? Scanner scan, readLine; System.out.print("Enter the name of your transaction file please (include .txt ...
0
votes
1answer
2k views

InputStream Reader for text, newline deliminated input?

Note: I am currently coding in java. I am looking to read input data into a string, one line at a time (or more), and i expect a lot of total lines. Right now I have implemented scanner in = new ...
1
vote
1answer
436 views

java: fully controlled input on JTextField

I want to have a JTextField (or another text-like input which supports focus and a cursor -- or maybe I should code my own?) where I want to have full control over the immediate input. I.e. I want to ...
0
votes
6answers
5k views

Counting the number of characters in a file

I'm writing a program that for one part asks for the program to print how many characters (including whitespaces) are in a file. The code I have right now though returns 0 every time though and I'm ...
0
votes
4answers
2k views

Java: Using Command line arguments to process the names of files

I'm a writing a program that will determine the number of lines, characters, and average word length for a text file. For the program, the specifications say that the file or files will be entered as ...
6
votes
4answers
3k views

Concurrent/Non-blocking console keyboard input in Java

I'm working on a MUD in java. I read player input every tick, but I'm using Scanner which uses blocking operations. I want to have non-blocking input. I've looked at the nio package which has a ...