Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
6answers
2k views

Does close ever throw an IOException?

After providing some answers here, and reading some comments, it would seem that, in practice IOException is never thrown on close for file I/O. Are there any cases in which calling close on a ...
9
votes
8answers
391 views

How to properly handle an IOException from close()

The Java I/O classes java.io.Reader, java.io.Writer, java.io.InputStream, java.io.OutpuStream and their various subclasses all have a close() method that can throw an IOException. Is there any ...
7
votes
2answers
267 views

How to read a file which is currently used, like Windows does when copying it?

One of my applications is intended to read (and only read) files which may be in use. But, when reading a file which is already opened in, for example, Microsoft Word, this application throws a ...
6
votes
5answers
12k views

IOException: Too many open files

I'm trying to debug a file descriptor leak in a Java webapp running in Jetty 7.0.1 on Linux. The app had been happily running for a month or so when requests started to fail due to too many open ...
5
votes
3answers
1k views

Is there a limit for the number of files in a directory on an SD card?

I have a project written for Android devices. It generates a large number of files, each day. These are all text files and images. The app uses a database to reference these files. The app is ...
5
votes
2answers
3k views

Android: Nexus One - Geocoder causes IOException - works perfectly with other devices and emulator

The code below works perfectly for real devices running on 1.5, 1.6 and 2.0 as well as the emulator running on 2.1. However, executing it on the Nexus One (running 2.1) raises an IOException: ...
5
votes
2answers
9k views

System.IO.Exception error: “The requested operation cannot be performed on a file with a user-mapped section open.”

I received a very weird IOException when writing to an XML file: System.IO.IOException: The requested operation cannot be performed on a file with a user-mapped section open. at ...
5
votes
5answers
28k views

System.IO.IOException: file used by another process

Dear all, I've been working in this small piece of code that seems trivial but still i cannot really see where is the problem. My functions does a pretty simple thing. Opens a file, copy its contents, ...
5
votes
3answers
699 views

IOException for drive full or out of space

I am looking for a list of platform-specific (JRE-specific) of IOException messages indicating disk is full or out of space. So far I have: Windows: "There is not enough space on the disk" ...
5
votes
6answers
3k views

how to best wait for a filelock to release

I have an application where i sometimes need to read from file being written to and as a result being locked. As I have understood from other questions i should catch the IOException and retry until i ...
4
votes
1answer
31 views

Why different exceptions for FileWriter and FileOutputStream?

The docs of Java 7 for FileWriter and FileOutputStream shows that the constructor of FileWriter throws IOException, while the constructor of FileOutputStream throws FileNotFoundException. The reason ...
4
votes
4answers
137 views

Java: Exception itself is null

I am pretty confused its an android problem or Java problem it self. When I was debugging an android application which works with Bluetooth, flow stopped on an catch block of IOException in which I ...
4
votes
4answers
908 views

System.IO.File.Delete() / System.IO.File.Move() sometimes does not work

A Winforms program needs to save some run time information to an XML file. The file can sometimes be a couple of hundred kilobytes in size. During beta testing we found some users would not hesitate ...
4
votes
2answers
3k views

java.io.IOException: Stream closed

For multiple image retreival I am calling a PhotoHelperServlet with an anchor tag to get imageNames(multiple images) as follows PhotoHelperServlet to get names of Images protected void ...
4
votes
2answers
5k views

xml pull parser assets xml

How can i parse a local XML file in the assets folder using pull parser? I can't get pull parser to work. It always throws an io exception. I think I can't get the path to the file, or connecting to ...
4
votes
3answers
492 views

How to identify whether folder is opened?

In my application I'm trying to rename the folder, but if the folder is opened in Windows Explorer I get an IOException. How can I identify whether folder is opened in Windows Explorer in C#?
4
votes
5answers
3k views

IOException while reading from InputStream

I'm running into a strange problem while reading from an InputStream on the Android platform. I'm not sure if this is an Android specific issue, or something I'm doing wrong in general. The only ...
4
votes
7answers
1k views

How can I handle an IOException which I know can never be thrown, in a safe and readable manner?

"The major difference between a thing that might go wrong and a thing that cannot possibly go wrong is that when a thing that cannot possibly go wrong goes wrong it usually turns out to be ...
4
votes
10answers
1k views

NUnit [TearDown] fails — what process is accessing my files?

Final Edit: I found a solution to the problem (at the bottom of the question). I've got an Nunit problem that's causing me grief. Edit: actually it looks more like a SQLite problem, but I'm not 100% ...
3
votes
2answers
75 views

Process cannot access the file because it is being used by another process on Directory.Move()

We have a client application with the following architecture: a manager process manages a couple of worker processes (reader and writer) and periodically queries the server for version updates. If a ...
3
votes
1answer
54 views

getting response code from HttpURLConnection in android

i am establishing connection with the server and its working fine. But there are times when i try to get the response code (when server is throwing back 401, 403, 404) i am getting IO Exception. I am ...
3
votes
2answers
105 views

Recovering from IOException: network name no longer available

I'm trying to read in a large (700GB) file and incrementally process it, but the network I'm working on will occasionally go down, cutting off access to the file. This throws a java.io.IOException ...
3
votes
1answer
98 views

BinaryReader.Read does not throw IOException when the connection is lost

I use HttpWebResponse.BeginGetResponse() method to make a request to my server. The request has AllowReadStreamBuffering set to false so that the data will not be buffered. In the "Request Complete" ...
3
votes
3answers
75 views

Which debugging tool (if any) allows me to identify the thread that is holding a lock on a file?

I'm debugging a test that periodically raises an IOException, noting that a file can not be deleted because it is being used by another process. I suspect that the process is indeed my test harness, ...
3
votes
1answer
423 views

Attempted to read past end of the stream error in MySQL

I'm running into a problem with MySQL where I have the following error. MySqlClient.MySqlException: Fatal error encountered during command execution. ---> MySql.Data.MySqlClient.MySqlException: ...
3
votes
3answers
2k views

java.io.IOException: mark/reset not supported

try { //String location = dir1.getCanonicalPath()+"\\app_yamb_test1\\mySound.au"; //displayMessage(location); AudioInputStream audio2 = ...
3
votes
5answers
923 views

How to read open excel file at C#

I want to read already open excel file with C#. I am using this method but it can't read the excel file while the file is open in Microsoft excel. FileStream stream = File.Open("myfile.xlsx", ...
3
votes
2answers
330 views

Emulate waiting on File.Open in C# when file is locked

I have, essentially, the same problem as this poster, but in C#: http://stackoverflow.com/questions/1746781/waiting-until-a-file-is-available-for-reading-with-win32 More information: we have code ...
3
votes
3answers
2k views

IOException when running Android projects in Eclipse

Every time I try to run an Android project from Eclipse with the Android plugin (Run -> Run), the emulator starts up just fine, but the upload fails, and the Console puts out this error message: ...
3
votes
3answers
3k views

java.io.FileNotFoundException for valid URL

I use library rome.dev.java.net to fetch RSS. Code is URL feedUrl = new URL("http://planet.rubyonrails.ru/xml/rss"); SyndFeedInput input = new SyndFeedInput(); SyndFeed feed = input.build(new ...
3
votes
1answer
213 views

How can I programmatically tell if a caught IOException is because the file is being used by another process, without resorting to parsing the exception's Message property?

When I open a file, I want to know if it is being used by another process so I can perform special handling; any other IOException I will bubble up. An IOException's Message property contains "The ...
3
votes
2answers
428 views

Deleting a window's background image WPF

I'm having a problem in WPF where a window doesn't release it's file-lock on the background image file after closing, before another part of the application tries to write to the image. So as an ...
3
votes
3answers
564 views

What's the best way to synchronize XmlWriter access to a file to prevent IOExceptions?

There are multiple places in an application which call XmlWriter.Create on the same file, all accessed through the following function. When one calls while another is still writing, I get an ...
3
votes
4answers
1k views

Java IOException only when running new Java 1.6 - someone please

After an upgrade to XP and Java 1.6 one of our intranet apps is experiencing a problem when running a java applet in the browser. The java applet is a document editor and accepts a parameter to where ...
2
votes
2answers
88 views

c# file move and overwrite

I'm developing a multi threaded application. I have somewhere in my code : File.Delete(sidetapedata); File.Move(sidetapedata2, sidetapedata); //sidetapedata and sidetapedata2 are two file paths that ...
2
votes
0answers
99 views

Java Runtime exec: permission denied [closed]

I am trying to do the following (as a simplistic example): public class Test { public static void main (String[] args) throws java.io.IOException { ...
2
votes
3answers
150 views

Getting java.io.IOException: stream active in a client server Java socket program

Before I post this I looked at some past questions on this exceptions but couldn't find an exact answar. I have a client server app which is basically a socket program connects with TCP. I got this ...
2
votes
4answers
634 views

Using e.printStackTrace() in Java

This is probably a newbie question, but hope you can help me. :) I have something like this: try { //try to do something there } catch (IOException e) { //handle the exception e.printStackTrace(); ...
2
votes
2answers
2k views

java.io.IOException: Unable to open sync connection! in to the Nexus

I try my application run on eclipse but i found these errors. which is faced first time so would you please give me any ideas for these error. i am currently using Nexus mobile. [2011-08-04 ...
2
votes
2answers
765 views

WPF IOException Cannot locate resource

WPF beginner here. I have a WPF application. The page that opens when the app runs in MainWindow.xaml, as set in the StartupUri attribute of the App.xaml file. This page opens fine. However, if I try ...
2
votes
1answer
614 views

Jetty IOException: Too many open files

I'm running Jetty on a website doing around 100 requests/sec, with nginx in front. I just noticed in the logs, only a few minutes after doing a deploy and starting Jetty, that for a little while it ...
2
votes
3answers
524 views

Too many open files Error on Lucene

The project I'm working on is indexing a certain number of data (with long texts) and comparing them with list of words per interval (about 15 to 30 minutes). After some time, say 35th round, while ...
2
votes
5answers
208 views

Java catch IOException

I think this is basic stuff but i'm not sure what to do. Why do I get IOException never thrown in body of corresponding try statement public static void main(String[] args) { File ...
2
votes
1answer
383 views

Write end dead exception using PipedInputStream java

Write end dead exception occurs in the following situation: Two threads: A: PipedOutputStream put = new PipedOutputStream(); String msg = "MESSAGE"; output.wirte(msg.getBytes()); ...
2
votes
2answers
374 views

IOException File Copy unhandled. When uploading image from a picturebox

Help! I can't figure out how to close the file. It always gives me IOException file, something like it is being used by another process Here's my code private void uploadpic_btn_Click(object ...
2
votes
2answers
605 views

BlackBerry OS 6: IOException:“peer refused the connection” on specified url

Calling Connector.open("http://MySpecifiedURL.com;deviceside=true;apn=rim.net.gprs"); Throws IOException: "peer refused the connection". This happens only with few specifies URLs, that used for ...
2
votes
3answers
388 views

How do I tell my C# application to close a file it has open in a FileInfo object or possibly Bitmap object?

So I was writing a quick application to sort my wallpapers neatly into folders according to aspect ratio. Everything is going smoothly until I try to actually move the files (using FileInfo.MoveTo()). ...
2
votes
8answers
2k views

C# The process cannot access the file ''' because it is being used by another process

The snippet of code was just supposed to write a string into a text file called "all_results.txt". I had errors implementing in File.WriteAllText. After searching the net for solutions, I tried using ...
2
votes
4answers
409 views

when does java.util.zip.ZipFile.close() throw IOException?

Under what circumstances would java.util.zip.ZipFile.close() throw an IOException? Its method signature indicates that it can be thrown, but from the source code there doesn't seem to be any place ...
2
votes
3answers
5k views

Why do I get the “Unhandled exception type IOException”?

I have the following simple code: import java.io.*; class IO { public static void main(String[] args) { BufferedReader stdIn = new BufferedReader(new InputStreamReader(System.in)); ...

1 2 3 4 5