IOException is the general class of exceptions produced by failed or interrupted input/output operations in several languages, including Java and C#.

learn more… | top users | synonyms

0
votes
0answers
16 views

org.apache.http.client.HttpClient failed with time out when trying to connect to sever behind proxy

My application connect to server to store and restore data. I'm using org.apache.http.client.HttpClient as HttpClient for this purpose. One of the customer as a proxy server which is "located" between ...
0
votes
2answers
49 views

Exception in reading a binary file

I am getting this exception. Is it because I am not catching them? java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2577) at ...
0
votes
0answers
14 views

android : mediaplayer E/MediaPlayer(5363): setDataSource: IOException in android 4.1 +

I am trying to play a video in videoview and it is failing in android 4.1 + . Others its working fine. I am getting the error E/MediaPlayer(5363): setDataSource: IOException! ...
0
votes
3answers
37 views

IOException after thousands of socket creation calls

Why IOException after thousands of socket creation calls? I did a simple Server code (Java) which accepts connections then creates a thread reads the socket and sends back another character to the ...
1
vote
1answer
22 views

create a directory with filehandler

I used java.util.logging to create two logfiles. Here's how it looks like. Handler fh = new FileHandler("%h/AntonGUI_Tester/Logfiles/"+logTime+".html"); fh.setFormatter(new HTMLTableFormatter()); ...
0
votes
2answers
54 views

C# - Ways to rename a directory [duplicate]

I'm using Directory.Move(oldDir, newDir) to rename a directory. Every now and then I get an IOException saying "Access to the path 'oldDir' is denied". However if I right click the directory in the ...
1
vote
2answers
33 views

Restart ServerSocket after IOException

How to restart ServerSocket after IOException? My server socket sometimes gets an EOFException and then stops accepting new connections. To solve this I have tried closing the old server socket and ...
0
votes
2answers
65 views

IOException: Internal Server Error when trying to consume rest service

I want to create a restful web service in java using jersey API and consume it in android application. I got this question on SO but it talks about java client whereas I have android client. My ...
0
votes
0answers
13 views

Connect Blufin device with my android app via bluetooth

I am connecting Bluefin device with my android app via blutooth, each time I have to restart my bluefin device for connecting because bluetooth socket connect method is throwing IOException. But I ...
0
votes
1answer
33 views

java File mkdirs and createNewFile won't work

I'm trying to copy and existing directory structure (no need for the file contents themselves, 0 length dummy files will do). However mkdirs() won't create the necessary directories, causing ...
0
votes
1answer
51 views

android: java.io.IOException: stream closed

I am reading xml data from server and parsing it during which i am getting the following exception. 05-07 12:37:31.904: W/System.err(2765): java.io.IOException: stream closed 05-07 12:37:31.907: ...
1
vote
2answers
48 views

Parceable encountered IOException writing serializable object

I am getting this error : FATAL EXCEPTION: main java.lang.RuntimeException: Parcelable encountered IOException writing serializable object (name = game.Level) at ...
7
votes
5answers
110 views

Why is InputStream.close() declared to throw IOException?

java.io.InputStream.close() is declared to throw an IOException. Under what circumstances would such an exception actually be thrown? Edit: Yes I have read the JavaDoc. Can anybody be more specific ...
0
votes
0answers
38 views

Why won't my image load?

Edit for Answer: Ok, the problem was that my controller was null. Everything above works fine and loads properly. I was getting the nullpointerexception because I initialized my controller after I ...
-4
votes
0answers
52 views

Android HttpUrlConnection getInputStream throws a NullPointerException [closed]

On the following line I get a NullPointerException error in Nexus s v4.1.2 but no problem in samsung galaxy s2 v2.3.4.when I change URL to http://www.google.com, it works, but not my personal web ...
0
votes
2answers
46 views

getSystemResourceAsStream unable to find resource

I have a requirement to read a XML file from file system. The code that read the XML is in a jar file and I cannot modify that code ClassLoader.getSystemResourceAsStream('Config.xml'); I tried ...
0
votes
1answer
68 views

File.Move and File.Copy gives IOException Logon failure

I'm writing an add-in for a fujitsu scanner in C#. Documents are scanned to a local directory, and I wanted to copy them to a pc on the network. I keep getting System.IO.IOException: Logon failure: ...
1
vote
1answer
17 views

Action listener/Throws IOException Conflict

I am attempting to make a GUI for a program that reads and writes information from a random access file and display it at will. I cannot manipulate anything but the GUI and must refer to prebuilt ...
0
votes
1answer
114 views

Exception in thread “main” java.net.SocketException: Connection reset

Server.java public class Server { public static BufferedReader inFromClient = null; public static DataOutputStream outToClient = null; public static Socket connectionSocket = null; ...
0
votes
0answers
27 views

NZEC Spoj Error with Java

Hi to all comunity of StackOverflow, I usually just find the answers by myself but this time I'm pretty confused about the reason behind this error. Sending this file to Spoj returns a NZEC runtime ...
0
votes
0answers
78 views

InputStream.Read(byte) returning ioexception : operation cancled

I developed an application which is connected android device with a tools via bluetooth. I already make a connection between them, but I have some problem with ioexception. It says that error is ...
1
vote
0answers
18 views

ImageIO always throwing exception

public class BackgroundPanel extends JPanel { File f; BackgroundPanel(File file) { f = file; } @Override public void paintComponent(Graphics g) { Image image; ...
0
votes
1answer
61 views

IOException in EJB3

So I kind of asked this question before but I didn't get quiet what i needed. I am new with JAVA entreprise editon and EJB3 and i am using it to create a Session bean on a JBOSS server v4.0. So here ...
1
vote
1answer
59 views

Add a value to a function of treeMap without losing old data

I have a Map: Map<String, DistributorAdd> map= new TreeMap<String, DistributorAdd>(); and i save it in a file.txt FileOutputStream fos = new FileOutputStream("Distrib.txt"); ...
2
votes
1answer
61 views

Troubleshooting Too many files open with lsof

I have a Java application running on Linux with PID 25426 When running lsof -p 25426, i noticed java 25426 uid 420w FIFO 0,8 0t0 273664482 pipe java 25426 uid 421r FIFO ...
2
votes
4answers
55 views

Debugging the “Too many files open” issue

The application i am working on suddenly crashed with java.io.IOException: ... Too many open files As i understand the issue it means that files are opened but not closed. Stacktrace of course ...
0
votes
0answers
31 views

Call void method (throws IOException) in class that adds ActionListener to a button

I have looked up the try-catch exception but I can't seem to get it to work, it would be a great help to me if anybody could help me figure out my problem. Button Class: enterB.addActionListener ...
0
votes
1answer
71 views

Why am I getting IOException and SocketException while writing to NetworkStream?

I have a dll which connects me to a software, let's call it driver1. I have a java program which has to connect to driver1 and query its status. The dll provides me functions for connecting and ...
0
votes
2answers
85 views

Java cannot create a file - Linux

When I create a file in Ubuntu using a Java program I get this error: Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException at actions.create.actionPerformed(create.java:18) ...
1
vote
0answers
245 views

Android Bluetooth .connect() exception Nexus 7 OBDII adapter

I'm using standard API procedures for connecting to a device. Specifically OBDII bluetooth adapters. I have two OBDII bluetooth adapters, of different models. Running the exact same code, the first ...
0
votes
0answers
39 views

ProxyFactory.getInstance io exception while deployment to glassfish via ANT in Java

I try to write a program which lets me to deploy files to glassfish via ant, but I get this exception. Unable to read system environment. No system environment will be used. Apr 5, 2013 9:38:14 AM ...
2
votes
4answers
350 views

c# Exception The process cannot access the file

I'm getting an exception: The process cannot access the file. Here's the code: if (!Monitor.TryEnter(lockObject)) return; try { watcher.EnableRaisingEvents = false; try { ...
1
vote
2answers
34 views

IOException in GAE 1.7.4

I have a problem to send data from my gae-server to the client. Everything works in local environment, but not on Google`s server environment I get an IOException. First of all I send a json file to ...
0
votes
2answers
236 views

BufferedReader not reading all lines

I am in the process of creating an Android application that communicates with the PC using a Bluetooth connection. I am attempting to send items from an ArrayList from the PC to the Android.
0
votes
1answer
54 views

cannot find file for createNewFile

I'm writing a private method in Java that reads and write to a simple text file, which it should make if it doesn't exist since createNewFile() checks for that first. private boolean ...
0
votes
4answers
45 views

Serializable simple Object IOException

Found the solution: you have to open the Streams like this: FileInputStream inputStream = openFileInput(FILENAME); ObjectInputStream ois = new ObjectInputStream(inputStream); Same with Output. ...
0
votes
1answer
115 views

How can I read a text file and display it using JoptionPane?

I am trying to take in user input and storing it in a text file, I was able to take in the input and storing it but now i am trying to display that input in a JOptionPane window. Can someone please ...
0
votes
2answers
39 views

Error 503 in HTTP during page parsing in java

Today I'm developing a java RMI server (and also the client) that gets info from a page and returns me what I want. I put the code right down here. The problem is that sometimes the url I pass to the ...
1
vote
0answers
322 views

WebRequest.Create throws “The specified registry key does not exist.”

I am calling this line of code to get to the azure server: var request = (HttpWebRequest)WebRequest.Create(uri); and receive this exception. Does anybody know how to manage with it? ...
0
votes
3answers
577 views

C# PDF Delete - File 'being used by another process'

I've searched far and wide for an answer to this question. I know WHY I'm received the exception, but I can't for the life of find the cause of it in my code. Basically, my code creates four separate ...
0
votes
0answers
44 views

GUI working but when running from console - handle invalid IOException

I have a program that is GUI that builds my project and saves the logs in some folder. I also run it using cmd and it works fine but when I want to redirect it - it just breaks: it offers me to ...
1
vote
1answer
128 views

Unable to determine as arff (Reason: java.io.IOException: premature end of line, read Token [EOL], line 1182

I have some data and I am processing it and converting it in a way that it generates a .arff file as follows : ............ @attribute murdered_to numeric @attribute envy.although_it numeric ...
3
votes
1answer
102 views

How to debug “Sharing Violation” when trying to delete a file

I have a multi threaded C# application which creates files, opens them for processing, then deletes them once finished. This application can expect anywhere from 1 - 100 files to be processed. ...
0
votes
3answers
71 views

Writing and copying Text files

I have an assignment to :write a program that reads a file and writes a copy of the file to another file with line numbers inserted. I am not sure what to do at the end of the code at the "for(int i ...
0
votes
0answers
86 views

Importing data from oracle to Hadoop Throwing error IO Exception SQL Command not properly ended

Importing data from oracle11g to Hadoop using MapReaduce api Throwing error "IO Exception SQL Command not properly ended" There Oracle and the Hadoop is in Linux Box remotely I have moved Java file ...
0
votes
1answer
61 views

Invalid handshake response exception

I am doing stress test with our tomcat server that communicates with its clients through websocket technology. So when I try more then 150 concurrent users on client side I receive this exception and ...
0
votes
0answers
12 views

IOException in LgKe500 while connectiong to server

i want to fetch data from server in LGKe500.bt when m trying it showing IoException. bt this code working fine in another devices. m getting IoException at hc.getResponseCode() in following code. ...
0
votes
0answers
208 views

org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.io.FileNotFoundException:

org.springframework.beans.factory.BeanInitializationException: Could not load properties; nested exception is java.io.FileNotFoundException: ${HOME}/spring/foo/foo.properties (No such file or ...
0
votes
2answers
234 views

IOException on accept thread

One part of my application connects to a device through Bluetooth and normally works fine but occasionally it won't connect and I get the following error 03-11 10:29:20.328: ...
0
votes
1answer
196 views

How to solve Java IOException: Negative Seek Offset? (Java ID3 Tag Library)

I'm trying to manipulate ID3 tags in MP3 Files using Java ID3 Tag Library. However, when i try to do ANYTHING using an "MP3File" class, i'm getting IOException: Negative Seek Offset; Here's an ...

1 2 3 4 5 9