0
votes
1answer
22 views
Using Ruby’s “ready?” IO method with gets, puts, etc
The standard Ruby library "io/wait" provides a method on IO objects ready? that returns non-nil if there is input available, nil or false otherwise. I know some methods like sysre …
0
votes
2answers
30 views
XmlDocument.Save omitting elements
I have the following XML that is built up at runtime using an XmlDocument:
<?xml version="1.0" standalone="yes"?>
<NewConfig xmlns="http://tempuri.org/NewConfig.xsd">
…
1
vote
4answers
67 views
Is a Download class a bad candidate for immutability?
I have a class that i use to do downloads. The class is observable and i use it as a swing UI model object too. However it is too slow, both to start (from the http handshaking i p …
0
votes
2answers
57 views
Reading in a file from Java GUI error.
With assistance from others, I have a program that allows a user to input their employee name and number and then their hourly wage and their total number of regular hours and over …
0
votes
1answer
37 views
Multithreading on a file open copy and write
Hi, I am new at threads here is the question,
I have 3 threads one of them calls a method that writes into a file via File.AppendAllText method, other thread duplicates the text i …
1
vote
0answers
19 views
Output results of a task in a FOR loop with added variables for logging
G'day all,
Trying to output the results of the task I'm running in a FOR loop with additional data. In this case, I'm using the FOR loop to read in server names from a text file t …
0
votes
3answers
73 views
Removing pause after reading using readLine in java
I am reading several lines from the console in a java program using the readLine command from the BufferedReader class. However, the program pauses at the end of the last line and …
2
votes
3answers
57 views
Will data in a pipe queue up for reading by Perl?
I have a Perl script that executes a long running process and observes its command line output (log messages), some of which are multiple lines long. Once it has a full log message …
3
votes
6answers
107 views
Java: interspersing bytes and characters
I have a piece of test equipment, from which I can read data using an InputStream, which intersperses bytes and characters (organized into lines), e.g.:
TEST1
TEST2
500
{500 binar …
0
votes
2answers
82 views
Is there a way to drive a today’s computer NIC with no underlying OS?
Hi,
I would like to write an IO intensive application with no underlying OS, running on x86 architecture and driving any modern network interface controller.
By having a look to …
0
votes
2answers
66 views
Reading through file using ifstream
I am trying to read from file:
The file is multiline and basically i need to go over each "word". Word being anything non space.
Sample input file would be:
Sample file:
…
0
votes
1answer
102 views
Read In Hex Values (C)
Hello all.
I am currently attempting to read in Hex values from a text file.
There can be multiple lines of Hex's and each line can be as long as needed:
f53d6d0568c7c7ce
1 …
0
votes
1answer
66 views
Combining Multiple Files Into Single Archive (Silverlight/C#)
In Silverlight one does not have access to the entire .NET Library and therefore I am considering the best way to get the functionality I would have courtesy of System.IO.Packaging …
1
vote
1answer
221 views
How to print an array to a .txt file in Matlab?
I am just beginning to learn Matlab, so this question might be very basic:
I have a variable
a=[2.3 3.422 -6.121 9 4.55]
I want the values to be output to a .txt file like this …
1
vote
1answer
207 views
buffered I/O vs unbuffered IO
Hi,
I learnt that by default I/O in programs is buffered, i.e they are served from a temporary storage to the requesting program.
I understand that buffering improves IO performanc …
