In computing, input/output, or I/O, refers to the communication between an information processing system (such as a computer), and the outside world, possibly a human, or another information processing system.

learn more… | top users | synonyms (2)

0
votes
0answers
6 views

Getting Around Error 2038 When Downloading File In Flex

So I've got a flex web app that makes a service call to the server when the user clicks a button. On the server, a file is made and a path string to the file is created using ...
0
votes
0answers
12 views

Sending video file from android to server

I am trying to send a mp4 video file over the network from my android to my servlet. When the servlet receives the data i want to write it to a file to make the video playable. The problem occures ...
0
votes
1answer
24 views

C++ Open a stream on a socket fd

I would like to open a stream on a sockect's fd, to read and write on it, but without using C functions, like open() read() or write(). I watched around fstream but apparently nothing to do what I ...
3
votes
1answer
38 views

Ruby Concurrency I/O

Following this, Ruby thread limit - Also for any language I am trying to understand why my threads are not working. Some answer were pretty clear like: "..creating 4 subprocessses with fork will ...
0
votes
2answers
22 views

Multiple reading from file fails (char array malloc required?)

I am experiencing that calling read_from_fd more than once causes the data to be empty. #include <fcntl.h> #include <stdlib.h> #include <stdio.h> #include <unistd.h> int fd; ...
0
votes
1answer
25 views

How do I build a .jar in Netbeans with relative folder dependencies?

I'm currently working on a simple RPG game with me and my friend in Java. One of the things I'm doing is drawing a tile-based map via .txt files, this way I can easily store and edit maps. Currently ...
0
votes
3answers
42 views

read() buffer has invalid data (pointer issue?)

I have the problem that the data array in the following function has some crappy value (looks to me like some memory location): int GPIO::GetValue() { char data[1]; if (read(_valuefd, data, ...
-3
votes
0answers
25 views

How to write raw data to video file [closed]

I am trying to send from an android device a video file to a servlet. Everything goes well, the servlet receives the data. But when i try to write the raw data to a file with FileOutputStream the ...
0
votes
3answers
54 views

Read String and bytes from the same file java

I'm looking for a way to switch between reading bytes (as byte[]) and reading lines of Strings from a file. I know that a byte[] can be obtained form a file through a FileInputStream, and a String ...
0
votes
3answers
58 views

problems with replacing first line of file using perl

I have a file that looks like this: I,like blah... I want to replace only the first line with 'i,am' to get: i,am blah... These are big files, so this is what I did (based on this): open(FH, ...
1
vote
2answers
34 views

OS Independent File System Access

I currently find myself in the position of having to not only learn python on the job, but also to be using a Windows machine to do the coding to deploy to a Linux environment. What I am trying to do ...
0
votes
0answers
29 views

How to create any file( Text/Excel) on behalf of other user

In my solution, I have a requirement to create the output report in the excel format and need to put it on the shared drive. Since only particular account (service account in our case) has read/write ...
1
vote
1answer
32 views

estimation of big comparison task

I have a programming task from the university which requires finding shared strings of a constant length by comparing of hundreds of files (good files and bad files, smaller than one megabyte) byte by ...
0
votes
0answers
8 views

CSV file created using Dojo.io.iframe send has no data

I am trying to export data from dojo Enhanced grid. I have written an event on a button click to export the data from grid to a csv file. Please find the function being invoked on button onclick. ...
2
votes
2answers
89 views

Parameter of type “has << operator”

I need to draw my object on an out stream, which is usually cout. But I also want the user to be able to input any stream that has << operator (such as QTextStream), so it doesn't have to be ...
0
votes
0answers
22 views

OpenCV Error: image step is wrong in array.cpp, line 928

I am using Microsoft Visual Studio 2012, with OpenCV 2.4.5 version. What I want to do is to read .jpg images from a folder using VideoCapture function, then do face detection, then write the detected ...
1
vote
3answers
81 views

PYTHON - reading single row from a file

I'm hours new to python, and I'm trying to write a script which reads a set of x,y coordinates from a file (named 'peaks.dat') and fills them into a list (of class type); I'm defining the following: ...
0
votes
1answer
14 views

General pupose pads of a controller

What does pad mean? e.g: I have a statement here The module provides dedicated general-purpose pads that can be configured as either inputs or outputs. So i'm not getting what exactly pad here ...
0
votes
0answers
27 views

Save all cells in a row into .csv(or .txt) file [Excel2007]

I'm a totally beginer in vba and excel's macros, but I have to write a macro which should save all cells from row A, separated with commas, additionaly text values should be closed in "". At the start ...
0
votes
5answers
69 views

Java: Blank File on writing

I am trying to write to a file in Java using the following function: public void writeTextFile(String filename, double s){ FileWriter output=null; try{ output= new FileWriter(filename); ...
0
votes
1answer
34 views

Unable to Read Local Resource

I have a project (in Eclipse, but that doesn't matter) with a hierarchy as follows: -src ---Start.java ---resources -----media -------intro.wav -----textures -------logo.png -------tiles.abotm In ...
1
vote
2answers
28 views

Python list operation (append multiple lists)

I have a text file called test.txt which contains data in this format .... a|b|c|d|e a1|b2|c3|d4|e5 a3|b5|c2|d1|e3 .... I want to get the values of each column into lists: something like this ...
1
vote
1answer
25 views

Formatted I/O inside signal handler

I'd like to write a SIGSEGV handler that writes messages to a file (FILE *). I've heard that fprintf is not reentrant and should not be called inside a signal handler. Is there a reentrant version of ...
0
votes
3answers
40 views

load an image from project's folder in java

I want to load an image which is in my projet folder as : /src/images/URL.jpg I tried this code : BufferedImage image = ImageIO.read(getClass().getResource("/images/URL.jpg")); But I'm getting ...
4
votes
2answers
54 views

Multiple exception handlers for file processing

I guess my brain is going soggy. Can somebody explain to be the best way to achieve the following task? I want to open a file, do some stuff with it, and then close it. I want to ensure that in all ...
0
votes
0answers
5 views

How do you set read/write permissions in a VS2010 windows service installer?

VS2010 spits out an installer for my windows service which works, except read/write permissions are not enabled. Is there any way to have VS2010 configure the installer to give the service read/write ...
0
votes
3answers
46 views

Java networking IO server setup

I want to play around with the Java networking I/O streams and API. I have a laptop and a PC on my network (I know the IP's to each of these devices) that connects through a Netgear DG834 router. How ...
-1
votes
0answers
62 views

linux one read process and one write process on one file at the same time

machine: linux 3.2 kernel. I have two processes, one process is to write to a file, the other process is to read from that file from beginning, they are doing read/write at the same time. The write ...
2
votes
3answers
94 views

Get system command output in C program

Is there a better way to do it? int numOfCPU; system("grep -c ^processor /proc/cpuinfo >> /tmp/cpuinfo"); FILE *fp = fopen("/tmp/cpuinfo", "r"); fscanf(fp, "%d", &numOfCPU); ...
0
votes
0answers
19 views

How to capture and stream the GUI output and input of a process over a network

I want to know how it is possible to capture the input and output of a process on windows and stream it over the network (including audio), so that the application can be controlled from over the ...
1
vote
1answer
20 views

Does it mean that most time is IO? [./run 278.74s user 83.56s system 0% cpu 13:50:45.69 total]

I have a long running task which is a Spark job (map/reduce variant) which runs locally on Mac OS (Mac Pro 12 Core). The time command returned: ./run 278.74s user 83.56s system 0% cpu 13:50:45.69 ...
-1
votes
0answers
11 views

What is the meaning of aio error -5? [closed]

I am running io on exported iSCSI device and getting error aio error -5 on Linux machine and IO stops. Below are the details of config file on which IO is running. title= "Testing device, simulating ...
0
votes
2answers
50 views

Accessing property of an object from the string which contains its name [duplicate]

I have a NSString *str = @"abc" and an object which has a property with name 'abc'. How can I access that property using 'str'. I know I have to use objective-c runtime, but dont know if its even ...
0
votes
2answers
43 views

Monitoring Windows system Read/Write operations by process?

I have been searching through the System.Diagnostics namespace looking for a way to monitor the read and write operations done by different processes without any luck. Does anyone know the classes or ...
1
vote
1answer
26 views

Error trying rename a file

Hi community! I have an application in VB.Net, in the user's computer is located in program files. The users run always the program as an Administrators. But in some cases; when the program try to ...
0
votes
2answers
12 views

Reading the last changes of a text file after FileSystemWatcher detects change

Relating to my earlier post: Smartest way to monitor log-files in realtime? I want a FileSystemWatcher to detect changes of a text file (logfile) and afterwards I want it to show me the latest ...
0
votes
1answer
14 views

FileStream Object throws Exception when Accessing the WebSite from Client Machine in the Same Nework

When I try to run the WebApplication From Visual Stuido 2010 and Hosted WebService in the same Machine It works fine. But when I access the same WebSite from different Machine.. I got this ...
0
votes
2answers
58 views

asp.net create folder and file in other server

In my asp.net application I have an option to take photographs, these photographs should not store the hosting server, the photographs should be stored on another server. (\192.168.1.103\ca\photos\ I ...
0
votes
1answer
27 views

Assembly mips running a text reading program from console

I have to write a program in mips assembly language that read a txt file and do some work with the information in it, the problem is that it must work from unix console using a command like this cat ...
10
votes
1answer
177 views

How to cancel Files.copy() in Java?

I'm calling Java's nio to copy something: Files.copy(source, target); but I want to give users the ability to cancel this (e.g. if the file is too big and it's taking a while). How should I do ...
0
votes
0answers
6 views

FIO Flexible IO tester for repetitive data access patterns

I am currently working on a project and I need to test my prototype with repetitive data access patterns. I came across fio which is a flexible I/O tester for Linux (1). Fio has many options and I ...
1
vote
2answers
49 views

Reading data from an online text file in C++

Alright. What I'm after is, what seems to me, fairly simple. I've got File I/O down to a fine art for basic text files. But, what I need now, is a way to read a text file that's online. Let's say, ...
1
vote
4answers
81 views

Break down text file in bash

I have a text file in the following format: variableStep chrom=chr1 span=10 10161 1 10171 1 10181 2 10191 2 10201 2 10211 2 10221 2 10231 2 10241 2 10251 1 variableStep ...
1
vote
1answer
28 views

ChannelBuffer readInt()/writeInt() results in wrong value

I have server implementation in Java using Netty and client is in Adobe Flash. When I am sending the request or response in the buffer, I am first writing the length of the buffer and then the data. ...
0
votes
2answers
25 views

reading a wav file using scipy.io.wavfile and then writing it doesn't reproduce the original file

I am trying to work with wav files in python. I downloaded the scipy library which supposedly can do the job. To see that it works I'm trying to read a wav file and then write it again to disk. For ...
0
votes
1answer
21 views

Write a table (of doubles) to binary file IO C++

Sorry for such a noob question, but I need it urgently: I need to write a matrix with four columns ("g_Grid.r", "g_Grid.t", "g_Grid.b", "g_Grid.ph") Normally, I write to file using file stream: ...
-1
votes
1answer
38 views

IO domain registry [closed]

I am looking to register a .io domain, however none of my usual registrars can do it for me. Where can I register a .io domain? Can anybody recommend a particular registrar? Thanks!
0
votes
3answers
63 views

Write a console message from Eclipse to a file

How to write a console message from Eclipse to a file? Please review it and I would appreciate if any one give the solution. My sample program is given below this is the console message: Invalid ...
1
vote
2answers
79 views

How to save string in one line? [duplicate]

I have several strings: a,b,c,d,e. I want to save them to file FILENAME as a single string a b c d:e. The problem - i need to keep information that d;e starts on new line. String str = a + " ...
1
vote
2answers
33 views

Echo characters in istream to an unusual “device”

I want to make a version of cin that works in a graphics display window (it's SDL, but I don't think that matters here): that is, when you type, the characters echo into that window rather than the ...

1 2 3 4 5 100