0
votes
2answers
50 views

Reading/Writing a file in Java Error

I'm trying to do this assignment: Write a program that reads a file and writes a copy of the file to another file with line numbers inserted. So far, I have written this much of the code: ...
0
votes
4answers
50 views

Looping over InputStream truncating data

So this is a very simple problem with a simple solution that I'm just not seeing: I'm trying to get a list of data through an InputStream, looping until I reach the end of the stream. On each ...
0
votes
2answers
34 views

Output of one c++ file as input of the other?

I have a two C++ source code in which one code generates an array for the specified input while other has to use array for execution. I want to know how can I link two C++ file such that output of ...
-1
votes
1answer
67 views

How to deal with very large integers? [closed]

If I have to store and do an operation on integers in the wide range of [1, 10^50000]. How can I do them? How can I store such large integers values first of all? And, how can I perform basic ...
0
votes
3answers
39 views

Java check if user is typing in the console

Is there a way to check if the user is typing in the console window in Java? My program prints information it receives about client connections using System.out.print() and I want it to stop printing ...
0
votes
0answers
121 views

C++ USB conencted barcode scanner input capture

I have a USB connected barcode scanner. When I scan a barcode it emulates a regular keyboard and prints the value of the code into the current window. I'm looking for a way to grab that output and not ...
0
votes
2answers
60 views

wait(0.5) is there a way? --fflush() block stop stdin ??? … SOLVED

the objective is to make workin() a low priority thread while other really heavy calculations are being made 2- is there a way to make a wait() of, lets say, 0.5 seconds ?? 1- is it possible to ...
0
votes
1answer
71 views

Junk values from an input file in C

So I have this bit of C code below. When I place printf statements to test the text from the input file, I see that I'm getting a bunch of junk values, to be more specific they are not even alphabetic ...
0
votes
1answer
91 views

Haskell couldn't match expected type char?

What im trying to do is call a function that I have already created into an input output main. The function im calling is a high order function shown below: filmsByFan' f = map title $ filter (elem f ...
0
votes
2answers
116 views

Haskell, using multiple if statements on input and output IO

Here is my current code, I want to be able to create a MAIN IO that acts as an interface and allows the user to pick which functions to execute depending on their choice. type Title = String type ...
0
votes
0answers
26 views

Redirect input from file AND show the input

Is there a way to take standard input from a file and show that input in the console when the program runs? For example: std::string s; std::cout << "Input: "; std::cin >> s; std::cout ...
0
votes
2answers
103 views

Haskell Input Output

Is it possible using's Haskell's input and output to be able to capture and store user entered data into variables? For example if user was asked a question: Enter your firstname: Ben, then ...
0
votes
1answer
79 views

SOLVED: RubyFiddle issue - NameError: undefined local variable or method 'gets' for #

I apologise if this has been asked before. I have looked through Stack Overflow and I have tried some potential solutions but to no avail. class SqrrtProg def hello puts "Hello! Welcome to ...
0
votes
0answers
60 views

getline() doesn't end long input

I need to input in my program a big string until the user types a delim char and I've written this code: int main(int argc, const char * argv[]) { string str, temp; string c; cout ...
2
votes
1answer
45 views

User input after print

I'm trying to make a simple lua program that converts Fahrenheit to Celsius and kelvin and I don't know how to put an input command on the same line as a print line. Here's what I mean. I want the ...
0
votes
1answer
62 views

Bash Read Escaped Characters and Normal Characters

I want to read in bash when any key is pressed, be it arrow key, number, letter, or punctuation, without pressing enter. This is the closest that I have come up with, besides that when an escaped key ...
0
votes
3answers
213 views

Intercept Barcode Scanner, Pass to Application with Focus When Done?

Is there a way to intercept USB Barcode Scanner input, utilize it, then pass it on to the application that has focus? We currently use Barcode scanners load order shipment information into Endicia ...
-3
votes
2answers
92 views

How to accept 5 numbers and print there sum using just one variable in the entire program using C language? [closed]

I have come across this question in a programming contest, but couldn't find the answer can anyone please help me with this??? input << 5 numbers output << Their sum constraints << ...
0
votes
2answers
321 views

How to print reversal of a string without using inbuilt functions and loops in C?

I have come across this question in a programming contest, but couldn't find the answer can anyone please help me with this??? Input<<string Output<<reverse(string) constraints: No ...
2
votes
3answers
124 views

What is the most efficient way to read formatted data from a large file?

Options: 1. Reading the whole file into one huge buffer and parsing it afterwards. 2. Mapping the file to virtual memory. 3. Reading the file in chunks and parsing them one by one. The file can ...
0
votes
2answers
111 views

FORTRAN 90 - Input Syntax Error

This should be an easy one.. I can't figure out why my read statement has a syntax error. I have a file 7477 lines long and I want each of those variables to correspond in each line like my format ...
2
votes
2answers
65 views

How to check if next input is empty?

I'm trying to redirect a file as stdin input (one of the requirements). I can't figure out how to check if the next input is empty or if it's done. something like this ./a.out program < file.txt ...
1
vote
5answers
394 views

Best way to skip a header when reading in from a text file in Perl?

I'm grabbing a few columns from a tab delineated file in Perl. The first line of the file is completely different from the other lines, so I'd like to skip that line as fast and efficiently as ...
-2
votes
1answer
278 views

read special characters from a file and write in another file using java [duplicate]

Possible Duplicate: Read special symbols from file I am trying to copy a file to another file . The file is using encoding standard UTF8 and file also containing special characters . the ...
0
votes
1answer
151 views

Reading text file into C++

I was writing a program which could read inputs directly from a text file into a C++ file. However, the contents of the file come in different formats, for example time. The input file looks ...
-1
votes
1answer
450 views

keeping a java socket open?

i'm making a program/game that will update automatically. i have the update part down, but not the checking of the version. i would have thought that it'd be pretty easy. heres what i've done. i wrote ...
0
votes
1answer
84 views

Where to put a .txt file for MARS

I am using the MARS program to write some MIPS assembly code and the program I am writing needs to take in an input file and then iterate through it to change some numbers. I have all of the body of ...
-2
votes
2answers
46 views

Flagging a button's register as read [closed]

I'm coding a Game Boy game using C. I am implementing a cursor that can move up and down depending on what button is pressed. If the UP key is pressed, the corresponding bit gets set in the register. ...
5
votes
3answers
665 views

How to Read User Input in Rust?

I'm wondering how to read user input in Rust. I intend to make a tokenizer, so first thing I need is to read every single line the user types and stops reading once the user presses <ctrl-D> I ...
1
vote
4answers
80 views

How do I return all characters that begin and end with certain characters in Perl (Or C++)?

note: I'm running Perl 5 on Linux I'm currently doing a project where I have to input a few words and then return words that begin with "d" and end with "e". I'm not using a pre-done list, for ...
0
votes
4answers
79 views

BufferedReader input gives unexpected result

When I run the following code and type 50 when prompted for input: private static int nPeople; public static void main(String[] args) { nPeople = 0; System.out.println("Please enter the ...
7
votes
1answer
126 views

Why can't I read Ctrl+S in C?

I have this program in C that reads the input like this: cod1 = getch (); if (kbhit()) cod2 = getch (); I can read every Ctrl+Char possible sequences, except for Ctrl+C, that closes the ...
5
votes
4answers
227 views

How to read an input file char by char using a Scanner?

I have to use Scanner, so is there a nextChar() instead of nextLine() method that I could use? Thanks!
0
votes
2answers
379 views

Using Java 7 API to read a file byte by byte

So anyways I have a 2 gb file I want to read in Java (actually four 2gb files). And so there's a new feature in Java 7 that can let me read all the bytes at once. import java.io.IOException; import ...
3
votes
3answers
604 views

Parse input without using anything but System.in.read()

I'm having a hard time finding details on how exactly System.in.read(); works, maybe somebody could help me out. Seems like Scanner would be preferable, but I'm not allowed to use it. I was given an ...
2
votes
3answers
533 views

getting input data from resource wav file in “raw” folder

I have been trying to read a buffer from the bytes of a wav file located in the raw folder using InputStream. I think what I don't understand is how to give the correct location of the file. the wav ...
0
votes
0answers
138 views

Java basic input/output program? [closed]

I'm extremely new to Java and I was wondering if there was a basic input/output script (when the user types something, the computer will respond with a per-determined response) I could use. Any ideas? ...
0
votes
1answer
371 views

Using I/O to compare files, keep getting runtime error

I have an assignment that asks a.) Prompts the user to input the names of 3 files: two input files and an output file. b.) Reads in the two input files line by line and compares the two lines. c.) ...
0
votes
1answer
91 views

Scanner looping headache

I have a homework assignment which requires input from the user and stores it in various data structures (arrays of linked-lists, stacks, etc.). However, I've been writing the main class of my ...
2
votes
1answer
331 views

select() isn't responding to writing on /dev/input/mice

I am writing a program which monitors through select() on the keyboard and mouse device files. It waits for any write operation (this should happen when there is a keystroke or mouse movement) on ...
1
vote
2answers
168 views

File path errors in eclipse? (Java Spring)

InputStream inp = new FileInputStream("src/main/resources/ExportHour.xls"); I have a file in the src/main/resources folder of my Java Spring project. I am attempting to create an inputstream in one ...
0
votes
1answer
231 views

Xcode user input: only first character shows up when inputting

When I am programming in Xcode (in C), and I am using the debugging console (brought forth with Cmd-R) to view the program and its output, and give it input, when I am entering input only the first ...
1
vote
2answers
42 views

I'm not sure which input I should use from imported IO class

I noticed that there are more than a few ways of creating user input in a command line program. I simply don't know which to choose. First I was thinking of using an input scanner but then I'm just ...
4
votes
3answers
122 views

Reading three characters per loop iteration in C?

This is making no sense to me, but hopefully one of you understand why it's doing this. I have an assignment that requires three characters be read with getchar() as the three integers next to one ...
2
votes
3answers
104 views

When reading input from the user in Perl, how to let Perl not display “Terminating on signal SIGINT(2)”?

I'm very new to Perl and currently I'm learning it on Windows 7 with ActiveState Perl. This is my program. chomp(my @lines = <STDIN>); foreach (sort @lines) { print $_; } When running ...
-1
votes
1answer
114 views

read() not waiting for input

I've got kind of strange problem. I was working on a simple program which was supposed to send data taken from stdin over the net to another instance of this program, which should send the data ...
1
vote
1answer
135 views

Java Scanner Validation returning the second input

I have a function here where it verifies the user input if its a number or within bounds. public static int getNumberInput(){ Scanner input = new Scanner(System.in); ...
0
votes
2answers
2k views

C: Ways to use scanf

Can I use scanf(...) as argument to a function ? Like this: printInteger(scanf(....)); Can I use scanf to attribute the value that I read to some variable ? Like this: n = scanf(...); p.s.: ...
1
vote
9answers
3k views

Read Data From Text File And Sum Numbers

Alright, so I want to read in data from a text file which is full of integers and have the program print those integers out to the screen while summing them. This shouldn't be hard, but I can't ...
0
votes
3answers
260 views

Reading single char's into variables from file c++

I am messing around with file input/output and I am trying to make a encoding/decoding program. I need help reading the encoded chars from the file back into the program to be decoded. (this is not an ...

1 2