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.
0
votes
0answers
12 views
Cannot Create Directory On Server. Permission Issue?
I am using lucene to store an index of some data. The following code checks for the existance of a directory in /home/username and if its not found, builds the index from scratch creating the ...
0
votes
2answers
39 views
Reading through a local text file in javascript
So I have a text file, let's call it plaintext.txt, and it's stored locally and I'm trying to read it in javascript, from the same folder that my js is running from.
In my html, I have
<script ...
0
votes
1answer
22 views
Print L and U matrices calculated by SuperLU using scipy
How can I print sparse L and U matrices calculated by splu, which uses SuperLU?
My MWE:
>>> import scipy
>>> import scipy.sparse
>>> import scipy.sparse.linalg
...
0
votes
1answer
39 views
How do I print out the whole text file all at once and not on the second time?
I am not sure what went wrong but the printout only give me completely the information form the txt file only on the second time. The first time it will only print out the first line that is in my ...
1
vote
2answers
25 views
Apache Commons FileUtils check if file exists in ftpurl
FileUtils.copyURLToFile(ftpUrl, destFile);
Is there any way I can check if a filename exists in the FileURL on the ftp location?
ftpURL: ftp://username:pwd@ftp.abcd.com/filename
Version used: ...
1
vote
0answers
18 views
when polling is better than interrupt?
I was looking at this pic:
and have 2 questions regarding it:
1. how much faster should a disk be in order for polling to be refered over the interrupt?
I thought that beacuse of the ISR and the ...
0
votes
2answers
24 views
Using Statement with Stream, StreamReader and WebResponse
I have been noticing what seems to be memory leaks in some of my services, and I am trying to make sure that I am handling resources properly. I have the following code used to send an external Http ...
2
votes
4answers
97 views
Read values from txt with rows of different sizes into a single numpy array
I need to read a file that has a structure like:
1 2 3 4 5
6 7 8 9 10
11 22
13 14 15 16 17
18 19 20 21 22
23 24
I need to read this file in a single array = [ 1,2,3, ... , 23, 24]
How to do ...
1
vote
0answers
40 views
iOS 5 with ARC - Avoid memory crashes
I am almost done programming a fairly large app which does a lot of talking with a backend, has a lot of caff sounds and displays several animations using sprite sheets. Every XIB files is connected ...
1
vote
2answers
22 views
APPIRATER setsignificantevent iOS
Basically I am using appirator to let user for rating my app only when the user does some signification events.Here is it how I have done it.
1.Have set the following in my app delegate
[Appirater ...
4
votes
3answers
102 views
Strange C bug in a simple program (homework)
Below is some simple code that should accept integer input from the console. It works fine until invalid (non integer) input is given.
1 #include <stdio.h>
2
3 int main()
4 {
5 int x = ...
0
votes
2answers
48 views
Saving array into the file (Java)
I need to solve such task:
Randomly generate the length of the array - save this int into file ("input.txt)" as a first digit;
Randomly generate array elements - save each element into the file ...
139
votes
14answers
51k views
Non-blocking read on a subprocess.PIPE in python
I'm using the subprocess module to start a subprocess and connect to it's output stream (stdout). I want to be able to execute non-blocking reads on its stdout. Is there a way to make .readline ...
1
vote
6answers
53 views
C read reallocates buffer
I'm reading standard input on linux. I provide read with buffer that has insufficient length (only two characters), buffer should overflow and Segmentation fault should occure. However the program ...
0
votes
2answers
32 views
Assignment Within the Check of a While Loop
I'm just learning c++ and was trying out a basic summation program using while loops and
#include <iostream>
using std::cin;
using std::cout;
int main(){
int userIn;
int runningSum =0;
...
0
votes
1answer
53 views
Physical transfer speed Java IO
Is there a way to see the transfer speed (MB/s) while copying files?
This is not for network sockets but for hdd to hdd for example.
i copy the files content in bytes.
Code for copying files: platform ...
9
votes
1answer
58 views
How can I `print` or `cat` when using parallel
If I call a function using parSapply then print, message or cat statements inside that function don't seem to output to the console.
My process takes a very long time, so I need some way of seeing ...
6
votes
2answers
99 views
How do I find all subfolders of a folder?
I’d like to enumerate all subfolders of a folder in Haskell. Getting all folder contents is easy, there’s a getDirectoryContents function. But how do I filter them? Since getDirectoryContents returns ...
15
votes
8answers
18k views
How do I get the file extension of a file in Java?
Just to be clear, I'm not looking for the MIME type.
Let's say I have the following input: /path/to/file/foo.txt
I'd like a way to break this input up, specifically into .txt for the extension. Is ...
0
votes
1answer
56 views
What cause “java.io.IOException: BufferedReader is closed” on android?
I got ANR in my application. Base on logs I found that my application was killed with signal 3. In stack trace I get info that code:
if (mReceiver != null && mReceiver.isAlive()){
...
0
votes
3answers
501 views
System.IO's Directory.Delete method sometimes work, but sometimes (specially in repetitive operations) says “The directory is not empty”
I have a button in my ASP.NET's web application, and when it's pushed, I simply delete the contents of a folder, and copy-paste some new fresh contents from another folder to it. Both folders are ...
0
votes
0answers
20 views
Java program produces lck files sometimes after I terminate my java program
When it starts, it is unable to access the log file from the same location, is there anything to do to prevent log file, such as a terminate handler that close the File IO stream
3
votes
3answers
109 views
Reading lines and raw bytes from the same source in scala
I need to write code that does the following:
Connect to a tcp socket
Read a line ending in "\r\n" that contains a number N
Read N bytes
Use those N bytes
I am currently using the following code:
...
0
votes
0answers
32 views
Are there any native methods that composes valid path names and file names
I wonder are there any native methods that composes valid path names and files names in C# 5 ?
I suppose it is possible with regex and such string operations manually but i wonder any native support. ...
1
vote
1answer
52 views
Open a *.COM file using stream
Just found myself in need of opening *.COM files in a C# application.
*.COM files are generated by fasm, with assemly code like this one:
org 100h
jmp start
msg: db "Hi", ...
1
vote
2answers
4k views
Sorting an ArrayList of strings with java collections
Below the code I am using works just fine and outputs the names except that the sort method is not working. I expected "Collections.sort(nameFromText);" to sort the ArrayList in alphabetical order by ...
1
vote
1answer
51 views
is FSDataInputStream limited to those bytes that were already written when it was created?
So I'm trying to understand some behavior in HDFS. My goal is to set up a configuration where I open an FSDataOutputStream to some location and then I have some other part of my application open up an ...
0
votes
1answer
36 views
Compile architecture error
I try to compile an xcode project and get this error:
CreateUniversalBinary ...
0
votes
0answers
7 views
trace windows server 2008 huge network transfer spike
OK, I know this is main developers's but I don't where to ask, hope I can get some clue here. We have 9 servers deployed by a network company, most of them are windows server 2008, others are windows ...
16
votes
14answers
8k views
What's the best way to open and read a file in Perl?
Edit on 11/26 - Please note - I am not looking for the "right" way to open/read a file, or the way I should open/read a file every single time. I was just interested to find out what way most people ...
0
votes
5answers
87 views
JTextArea txt; txt.getText() skips “\n”
i have some text in TextArea, and i want to save it in file, my code is here:
private void SaveFile() {
try {
String content = txt.getText();
File file = new File(filename);
...
0
votes
1answer
85 views
C# - StreamReader/StreamWriter - File used by another process
First off, I made sure that I dispose and close everything (both reader and writer) properly. The method I'm doing is that I'm using the using statement; and before this, I manually used the dispose ...
0
votes
3answers
64 views
comma separated stream into struct
I have a structure with an int and two strings. When reading in the file it is comma seperated for the first two values and the last value is terminated by a newline. The third argument could be empty ...
0
votes
0answers
9 views
Mouse/touchpad rotation
I need to offset the orientation of my mouse input by -45 degrees.
I've seen this done in a program called Sakasa Mouse, so I know it can be done. However, this program makes the mouse feel very ...
0
votes
1answer
81 views
+50
Cipher Output and Input Streams
I'm attempting to store some encrypted data in the Android filesystem. I'm getting errors I don't understand and empty files. Please help.
Code:
private Cipher cipher;
private ...
0
votes
2answers
36 views
Inputstream not being read
I am new to JavaEE, but yeah. Everything is working just fine on my computer while I'm running the code, however when I send it to my server, my input isn't being read.... So I'm guessing there's ...
0
votes
3answers
33 views
Is writeHead a non blocking IO command?
I am writing a code to load a page for the client. A piece of the code is:
response.writeHead(301, {"Location": "/login/index.html"});
response.end("");
The question is if I have a slow client ...
0
votes
1answer
44 views
Erlang identify umlauts
How can I identify german umlauts in Erlang? I tried for days now, when I read a text as list it just doesn't get them. I tried this for example
change_umlaut(Word) -> ...
105
votes
16answers
50k views
Cannot delete directory with Directory.Delete(path, true)
I'm using .NET 3.5, trying to recursively delete a directory using:
Directory.Delete(myPath, true);
My understanding is that this should throw if files are in use or there is a permissions problem, ...
0
votes
0answers
34 views
Issue with ObjectInputStream via Socket connection [closed]
I'm doing my first experimentation with Java Sockets. For a learning exercise, I'm creating a networked Battleships game.
One machine is set up to fire a shot first. When that user clicks a button ...
0
votes
1answer
54 views
My output keeps getting appended to the previous output
I'm writing a program to convert infix to postfix. I read infix data from text file then convert it.
The problem is when outputing the results, it takes the previous one and adds it to next one ...
-1
votes
2answers
45 views
Reading database from file c++ [closed]
I'm trying to read my database from file.
Here is my save_base method:
void data_base::save_base()
{
fstream file;
file.open("base.dat", ios::in | ios::out | ios::trunc);
...
2
votes
3answers
82 views
Python writing binary files, bytes
Python 3. I'm using QT's file dialog widget to save PDFs downloaded from the internet. I've been reading the file using 'open', and attempting to write it using the file dialog widget. However, I've ...
1
vote
3answers
49 views
Linux, cancel blocking read()
In a multi-threaded Linux program used for serial communication, is it possible (and what would be the best approach) to terminate a blocking read() call from another thread?
I would like to keep ...
1
vote
1answer
45 views
Iteratively writing to HDF5 Stores in Pandas
Pandas has the following examples for how to store Series, DataFrames and Panelsin HDF5 files:
Prepare some data:
In [1142]: store = HDFStore('store.h5')
In [1143]: index = date_range('1/1/2000', ...
8
votes
1answer
106 views
Monad transformers monad duplication
I am new to monad transformers, so sorry easy question.
I have value val :: MaybeT IO String and function fn :: String -> IO [String].
So after binding, I have val >>= liftM fn :: MaybeT IO ...
3
votes
1answer
68 views
Copy executing files from a UNC path
I am writing an application that needs to copy files from a network directory, where the files are currently executing.
I have tried opening the file with
using (var source = new ...
1
vote
3answers
58 views
JTextArea not updating dynamically
I have a JTextArea inside a class that I want to update dynamically. Currently it is only displaying the text I append to it after all the processing is done. I have tried to implement the following ...
0
votes
3answers
33 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 ...
-2
votes
0answers
10 views
difference between i/o processor and i/o conto [closed]
What is the difference between I/O processor and I/O controller.??
I have been asked this question in interview which was for trainee in electricity board.
I couldn't figure out what she was ...


