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)

-2
votes
3answers
53 views

FileIO - Exception in thread “main” NullPointerException

When I run the main method, the following kept popping up: Exception in thread "main" java.lang.NullPointerException I have checked my code, but unable to find any uninitialized variable. Can ...
0
votes
1answer
24 views

StandardOpenOption for directories and files. Files.create..()

Why the StandardOpenOption parameter is not present at all in the parameter list of this method: Files.createDirectory(path, FileAttribute<?>)? I am talking about the same StandardOpenOption ...
0
votes
1answer
29 views

FileChannel vs RandomAccessFile [closed]

Considering that FileChannel in Java 7 implements the interface SeekableByteChannel. Is there any use in using RandomAccessFile rather than FileChannel? Thanks in advance.
0
votes
1answer
31 views

Casting a SeekableByteChannel to a FileChannel

Directly from this oracle java tutorial: The following code snippet opens a file for both reading and writing by using one of the newByteChannel methods. The SeekableByteChannel that is ...
1
vote
1answer
37 views

Ruby create and open file with ::expand_path and create directory with ::expand_path

I'm just beginning to learn file IO with Ruby, and had a question about being able to use ::expand_path to direct to a path separate from where my program is running. Here is what I essentially ...
-5
votes
0answers
12 views

In Java, what do the following commands do? [closed]

Sorry for asking this, but this stuff was not in my textbook anywhere. 1) java.io.file MyFile = new java.io.File("c:/chapter8g.java); 2) System.out.println("Does it exist?" + myFile.exists()); 3) ...
1
vote
1answer
43 views

What does “copy ByteBuffer” stand for in the following snippet?

Directly from this oracle tutorial, it's a bit explaining how to use the random access capabilities in java. The snippet is the following: String s = "I was here!\n"; byte data[] = s.getBytes(); ...
1
vote
1answer
33 views

Read a file with line continuation characters in Python

I'm looking for a nice pythonic way of reading a file, and joining any lines which are logical continuations of the ones above, as indicated by a line continuation character. E.g. Here is a normal ...
1
vote
1answer
27 views

FileChannel.open() vs RandomAccessFile in Jdk 7

I would like to know the difference between the following: FileChannel fc = FileChannel.open(); RandomAccessFile ra = new RandomAccessFile("RandomFile","rw); Since Java 7 the class FileChannel ...
0
votes
1answer
35 views

Read files and insert data count into JTable

How to read files and insert data count into JTable? I have n number of txt files. What I need to do is to read data from each file and insert the data count of each corresponding file into java ...
0
votes
1answer
25 views

Which IO port for coding engines, sensors

I would like to control some physical engines, switches on/off, lights through a self written C API. I already have a very general overview of how to achieve this: Use the kernels abstraction, write ...
2
votes
1answer
18 views

Nio bytebuffers (by channel) against IO BufferInputStream

Which of the two would be the best choice and in which circumstance? Clearly there is no sense in using a file channel for a very small file. Besides that, what are the pro and cons of the two ...
0
votes
1answer
49 views

>> Operator overloading function infinite recurse [closed]

I wrote a rational class for my college homework. class Rational { friend std::istream &operator >>(std::istream &, const Rational &); friend std::ostream &operator ...
-2
votes
1answer
55 views

Program does not save File

I am not putting all my classes here but here is: CheckOptionPanel package main; import java.io.*; import javax.swing.*; import java.awt.event.*; import java.awt.*; import javax.swing.JOptionPane; ...
-5
votes
1answer
56 views

How do I sum up the data in a file in Java? [closed]

I have previously done my research and I couldn't find anything that could help me. I have a file which has a persons name and then their grades next to it. I want to take the grades for each name and ...
0
votes
0answers
14 views

Scalable network I/O

I've previously had to deal with fairly low numbers of concurrent network I/O requests (on the order of 20-30). I now have a requirement to eek out as much performance as possible to allow tens of ...
0
votes
1answer
62 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
1answer
17 views

Storing pdf as tmp and pointing webbrowser to it

I am a bit confused as to how I point my webbrowser to a temporary PDF file.. If I point it to the PDF, I get a download box dialog asking me to download a file and invalid browser page. WebBrowser ...
0
votes
3answers
39 views

Reading a number from a multi-line txt document in c++

I'm making a program, and have a .txt file that i need to read from, and get commands from. the text document looks like: U R F 10 D F 13 Q and i need to get the numbers out of it. the way im ...
0
votes
2answers
21 views

Byte [] used as a BufferInputStream ok but

Ok I know a buffer is actually an array of byte, however I have never seen the following declaration (taken from here) URLConnection con = new URL("http://maps...").openConnection(); InputStream is = ...
0
votes
0answers
64 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
1answer
16 views

Oracle snippet does not give back results

Here I have the following bit of code taken from this oracle java tutorial: // Defaults to READ try (SeekableByteChannel sbc = Files.newByteChannel(file)) { ByteBuffer buf = ...
1
vote
3answers
128 views

Haskell IO function type mismatch

what is the problem with the following code: nextMatch :: (a -> Bool) -> [IO a] -> (IO a, [IO a]) nextMatch f (x:xs) = do s <- x if f s then (return x, xs) else nextMatch ...
0
votes
1answer
30 views

RandomAccessFile vs FileChannel.open(path);

What kind of FileChannel object does the FileChannel.open(path) method return? Is it still random access allowed as if it was as following? RandomAccessFile ra = new ...
1
vote
1answer
66 views

is Scanner in Java enough for reading input from a text file?

what i'm going to do i'm going to build a phone book program in Java to do the following jobs: read from two text files, instruction.txt and phonebook.txt phonebook.txt includes some phone entry, ...
0
votes
1answer
58 views

Convert ZipOutputStream to FileInputStream

i have a code that takes a file, zip it, and stores it in a database looks like this // STEP 1 - Create a ZIP file byte[] buffer = new byte[1024];// 18024 ...
0
votes
1answer
39 views

difference between bytebuffer.flip() and bytebuffer.rewind()

I am aware that flip() set the current buffer position to 0 and set the limit to the previous buffer position whereas rewind() just set the current buffer position to 0. In the following code, either ...
0
votes
1answer
47 views

wait(0.5) is there a way? --fflush() block stop stdin ??? HALF 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
87 views

Serial port com3 doesn't exist c#

I have an usb device that is plugged in as a serial port on com3. I use this to open port: string[] ports = SerialPort.GetPortNames(); foreach (string portName in ports) { try { ...
0
votes
1answer
52 views

HUnit testing with file dependent tests

I have a lexer, and wish to test it against a set of known good test cases. These are held in a subdirectory ./test_src/ , and each has an extension testname.txt What i'd like to do is get the paths ...
0
votes
1answer
23 views

Overly Broad Directory.EnumerateFiles() vs Multiple File.Exists()?

I am updating a program which, among other things, checks for the existence of files within a given path. The files could be located in any one of many subdirectories off of the main path. Previously, ...
-1
votes
0answers
53 views

How can I manipulate the data in a JTable dynamically?

I am creating an application that requires me to use a JTable to display the data. The data for the JTable is stored in a local file and updates when the user modifies a file in the cloud file ...
1
vote
1answer
69 views

Is there a portable way to redirect stdin to string in C++?

Is it possible in C++ to redirect stdin to string in C++? Using freopen I can redirect stdin to file, so both scanf and cin will use a content of that file. Using manipulations with stringstream and ...
0
votes
0answers
33 views

What are Channels in AQMP Rabbit MQ?

I have been reading through the RabbitMq in action book this is the following excerpt from the book [Chapter 2, Section 1] where i am stuck Whether you’re publishing a message, subscribing to a ...
0
votes
2answers
88 views

Creating byte array to image using ImageIo [duplicate]

I am reading a binary file and changing some values and creating a image file from that. Here is my code public class Capture { private static final String inputFile = "E:\\Capture_Mod1.BIN"; ...
0
votes
0answers
31 views

CustomHttpClient throwing timeout exception

I have this CustomHttpClient class, which I found in the net: public class CustomHttpClient { public static final int HTTP_TIMEOUT=10000; private static HttpClient mHttpClient; private static ...
0
votes
3answers
95 views

C++ reading a file in binary mode. Problems with END OF FILE

I am learning C++and I have to read a file in binary mode. Here's how I do it (following the C++ reference): unsigned values[255]; unsigned total; ifstream in ("test.txt", ifstream::binary); ...
1
vote
2answers
92 views

How to copy file from one location to another location?

Basically I doing copy files from one location to another location. But first I am search the folders on specific location (eg-D:\\CBSE_Demo\\) which I want to copy after that I am copy that folders ...
-2
votes
2answers
51 views

Writing to a file with RandomAccessFile#write() [closed]

lets say i have a program that makes a binary file called data.bin and i write a bunch of random information to it using data.write(item) like: RandomAccessFile data = new ...
-1
votes
0answers
35 views

Cannot get an AudioInputStream

I am having an issue when trying to open the AudioInputStream where my code says try{ audioIn = AudioSystem.getAudioInputStream(bufferedIn); } I am not getting any error messages or anything, my ...
4
votes
2answers
112 views

Haskell processing [IO String]

I've got the following function: lines' :: [IO String] lines' = getLine : lines' I was hoping I could just use all the mighty list functions on this list, like filter etc. But my knowledge about ...
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: ...
-3
votes
1answer
50 views

Download a file from server to local hard drive [closed]

I want to create a Windows desktop application which will download a file from a server and places it in the C drive. How can I create it? Please give me any reference if it is available.
0
votes
1answer
61 views

Multithreading/IO Stream Issues in a Java TCP Chat Client

I have a (you guessed it) homework assignment in Java that has been driving me up the wall. I am making a chat client based on TCP that will eventually use Swing as a GUI, but right now I'm just ...
0
votes
1answer
28 views

LinqtoCsv write - create new or append

I'm using LinqToCSV to write a list out to a csv file like this: var outputFile = ConfigurationManager.AppSettings["OutputFile"]; var context = new CsvContext(); ...
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 ...
0
votes
0answers
24 views

How to rotate a view which is presented as presentModalViewController above a UIViewController inside UINavigationController

I have a UIViewController inside UInavigationController which is in Portrait mode. Its view has a UIButton which presents another UIview (in the same nib file) as presentModalViewController. I want ...
0
votes
0answers
34 views

How much fast can a microcontroller read from IO pins?

What actually wonder is like the following. I will supply 8 bit data, 1 clock and 1 data valid signal to a microcontroller with 20 Mhz; and then want to send the data over ethernet or USB. I have ...
3
votes
1answer
92 views

Lua script with C++ : attempt to index global 'io' (a nil value)

I'm going to write a program using lua fo AI, so I'm trying to make it works together. But when I try to load a lua script from my cpp file I've got this error message : -- toto.lua:1: attempt to ...
2
votes
2answers
88 views

How do I concat/flatten byte arrays

I'm making a function that generates a .wav file. I have the header all set, but I'm running into trouble with the data itself. I have a function for creating a sine wave at 880Hz (at least I think ...

1 2 3 4 5 98