active questions tagged ioexception - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T01:00:59Zhttp://stackoverflow.com/feeds/tag/ioexceptionhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1889475/jboss-hanging-on-org-apache-jk-common-jkinputstream-receive-ioexception-readi1JBOSS hanging on org.apache.jk.common.JkInputStream.receive() - IOException reading the http request inputstreamchrisjleu2009-12-11T17:12:19Z2009-12-11T19:11:40Z
<p>I have a problem that causes all threads in JBOSS to block while reading the input stream. It does not happen predictably and the system can run for days (or longer) before it starts to suffer. The problem looks similar to question <a href="http://stackoverflow.com/questions/1624159">1624159</a> but I have yet to try setting <em>-Dhttp.keepAlive=false</em> as recommended in the answer because I wondered if anyone else has a different/better solution. I would rather not have to incur a performance hit by setting this property to false (assuming that even fixes the problem). There are some Sun bugs that talk about issues with BufferedReaders and InputStream reading (<a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6192696" rel="nofollow">bug 6192696</a>, <a href="http://bugs.sun.com/bugdatabase/view%5Fbug.do?bug%5Fid=6409506" rel="nofollow">bug 6409506</a>), but to me they seem a bit inconclusive. Your thoughts/advice/experience with an issue like this and the Sun bugs would be welcome.</p>
<p>Here is the exception:</p>
<pre><code>java.io.IOException
at org.apache.jk.common.JkInputStream.receive(JkInputStream.java:190)
at org.apache.jk.common.JkInputStream.refillReadBuffer(JkInputStream.java:249)
at org.apache.jk.common.JkInputStream.doRead(JkInputStream.java:168)
at org.apache.coyote.Request.doRead(Request.java:418)
at org.apache.catalina.connector.InputBuffer.realReadBytes(InputBuffer.java:284)
at org.apache.tomcat.util.buf.ByteChunk.substract(ByteChunk.java:404)
at org.apache.catalina.connector.InputBuffer.read(InputBuffer.java:299)
at org.apache.catalina.connector.CoyoteInputStream.read(CoyoteInputStream.java:192)
at com.vicinity.ExtractMessageServlet.service(ExtractMessageServlet.java:62)
<SNIP>
</code></pre>
<p>Here is a sample of the request headers:</p>
<pre><code>POST http: //www.xyz.com HTTP/1.0
Host: www.xyz.com:80
Accept: */*
Content-Type: application/octet-stream
Content-Length: 00597
Session-Key: 812a0000
</code></pre>
<p>Here is the Servlet code of the web application. It get's stuck on <code>servletInputStream.read</code>:</p>
<pre><code>int lengthOfBuffer = request.getContentLength();
byte[] buffer = new byte[lengthOfBuffer];
ByteArrayOutputStream output = new ByteArrayOutputStream(lengthOfBuffer);
ServletInputStream servletInputStream = request.getInputStream();
int readBytes = -1;
while ((readBytes = servletInputStream.read(buffer, 0, lengthOfBuffer)) != -1) {
output.write(buffer, 0, readBytes);
}
byte[] inputStream = output.toByteArray();
...
// Continue to process the input stream
</code></pre>
<p>(JBoss version is <strong>JBoss AS 4.0.5.GA</strong>. Also <strong>mod_jk</strong> is routing http requests on port 80 from Apache server to the JBoss server - if that's of interest).</p>
http://stackoverflow.com/questions/1863989/strange-console-movebufferarea-ioexception0Strange Console MoveBufferArea IOExceptionm0sa2009-12-08T01:23:46Z2009-12-08T04:02:31Z
<p>Hi,
I was building a "reverse console" (so that the written lines would append themselves on the top instead of the bottom) as I stumbled upon a very strange behavior of the Console.MoveBufferArea method:</p>
<pre><code> static void Main()
{
for (var _linesWritten = 0; _linesWritten < 1000; _linesWritten++)
{
var _height = Math.Min(Console.BufferHeight-1, _linesWritten);
Console.MoveBufferArea(0, 0, Console.BufferWidth, _height, 0, 1);
Console.SetCursorPosition(0, 0);
Console.WriteLine("Line {0} aaaaaaaaaa", _linesWritten);
Console.ResetColor();
}
}
</code></pre>
<p>When i call it a fixed number of times it throws an System.IO.IOException saying: "Not enough storage is available to process this command". I figured out that it depends on the amount of the buffer area being moved around. The number of lines written before the exception is thrown changes as I change the Console.BufferWidth property.</p>
<p><a href="http://img710.imageshack.us/i/wtfconsole.png/" rel="nofollow" title="Screenshot">Screenshot</a></p>
<p>I am running Windows 7 x64 @ Corei7, 6gb DDR3, so storage shuldn't be the problem....
Does anybody have a clue what could be wrong?</p>
http://stackoverflow.com/questions/1661532/deleting-a-windows-background-image-wpf1Deleting a window's background image WPFSiyfion2009-11-02T14:09:51Z2009-11-02T17:33:34Z
<p>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.</p>
<p>So as an example; say I have a WPF app consisting of 3 windows, 1 "menu" selection window and 2 others. Both of the windows create an <code>ImageBrush</code> using a <code>BitmapImage</code> as the <code>ImageSource</code> (the <em>same</em> image).</p>
<p>Window A has a button that when pressed, cycles through the available background images by copying them each over the file used as the original <code>ImageSource</code> and creating a new <code>ImageBrush</code> and setting the <code>Window.Background</code> to the new brush.</p>
<p>Window B simply uses the <code>ImageBrush</code> to draw the <code>Window.Background</code>.</p>
<p>If Window A is launched, backgrounds switched, closed and then Window B launched, everything is fine.</p>
<p>If Window B is launched, closed, then Window A is launched and backgrounds switched it crashes. Trying to switch the backgrounds throws an <code>IOException</code> because: </p>
<p>"The process cannot access the file 'C:\Backgrounds\Background.png' because it is being used by another process."</p>
<p>So Window B must still be holding onto it somehow!? I have tried doing a <code>GC.Collect(); GC.WaitForPendingFinalizers();</code> to see if that cures the problem but it doesn't.</p>
http://stackoverflow.com/questions/1602157/ioexception-access-denied-using-fileoutputstream1IOException - Access Denied Using FileOutputStreamDavid Castle2009-10-21T16:56:38Z2009-10-21T23:14:21Z
<p>I get the following IOException :</p>
<pre><code>java.io.IOException: Access is denied
at java.io.WinNTFileSystem.createFileExclusively(Native Method)
at java.io.File.createNewFile(File.java:850)
at zipUnzipper.main(zipUnzipper.java:41)
</code></pre>
<p>When trying to run the following piece of code :</p>
<pre><code>public class zipUnzipper {
public zipUnzipper() {
}
public static void main(String[] args){
//Unzip to temp folder. Add all files to mFiles. Print names of all files in mFfiles.
File file = new File("C:\\aZipFile.zip");
String filename = file.getName();
String filePathName = new String();
int o = filename.lastIndexOf('.');
filename = filename.substring(0,o);
try {
ZipFile zipFile = new ZipFile (file.getAbsoluteFile());
Enumeration entries = zipFile.entries();
while(entries.hasMoreElements()) {
ZipEntry zipEntry = (ZipEntry) entries.nextElement();
System.out.println("Unzipping: " + zipEntry.getName());
BufferedInputStream bis = new BufferedInputStream(zipFile.getInputStream(zipEntry));
byte[] buffer = new byte[2048];
filePathName = "C:\\TEMP\\"+filename+"\\";
File fileToWrite = new File(filePathName+ zipEntry.getName());
fileToWrite.mkdirs();
fileToWrite.createNewFile();
FileOutputStream fos = new FileOutputStream(fileToWrite);
BufferedOutputStream bos = new BufferedOutputStream( fos , buffer.length );
int size;
while ((size = bis.read(buffer, 0, buffer.length)) != -1) {
bos.write(buffer, 0, size);
}
bos.flush();
bos.close();
bis.close();
}
zipFile.close();
File folder = new File (filePathName);
File [] mFiles = folder.listFiles();
for (int x=0; x<mFiles.length; x++) {
System.out.println(mFiles[x].getAbsolutePath());
}
} catch (ZipException ze) {
ze.printStackTrace();
} catch (IOException ioe) {
ioe.printStackTrace();
}
}
}
</code></pre>
<p>It seems to me that for some reason the JVM can't create a new file. The code runs perfectly well if the files already exist. Is there some kind of access file which dictates whether the JVM can create a new file or am I simply doing something wrong?</p>
<p>Any help is much appreciated :-)</p>
<p>I'm running Java 1.4 and have been testing in JDeveloper in Windows XP.</p>
http://stackoverflow.com/questions/1569357/ioexception-while-changing-from-file-to-bufferedimage0IOException while changing from File to BufferedImageJonathan2009-10-14T22:28:31Z2009-10-14T22:36:36Z
<p>Error: Unhandled exception type IOException.</p>
<pre><code>File imgLoc = new File("player.png");
BufferedImage img = ImageIO.read(imgLoc);
</code></pre>
<p>How do I get a bufferedImage from a file location?</p>
http://stackoverflow.com/questions/582988/can-you-explain-why-directoryinfo-getfiles-produces-this-ioexception1Can you explain why DirectoryInfo.GetFiles produces this IOException?flipdoubt2009-02-24T18:35:39Z2009-10-07T08:59:03Z
<p>I have a WinForms client-server app running on a Novell network that produces the following error when connecting to the lone Windows 2003 Server on the network:</p>
<pre><code>TYPE: System.IO.IOException
MSG: Logon failure: unknown user name or bad password.
SOURCE: mscorlib
SITE: WinIOError
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.Directory.InternalGetFileDirectoryNames(String path,
String userPathOriginal, String searchPattern, Boolean includeFiles,
Boolean includeDirs, SearchOption searchOption)
at System.IO.DirectoryInfo.GetFiles(String searchPattern,
SearchOption searchOption)
at System.IO.DirectoryInfo.GetFiles(String searchPattern)
at Ceoimage.Basecamp.DocumentServers.ClientAccessServer.SendQueuedFiles(
Int32 queueId, Int32 userId, IDocQueueFile[] queueFiles)
at Ceoimage.Basecamp.ScanDocuments.DataModule.CommitDocumentToQueue(
QueuedDocumentModelWithCollections doc, IDocQueueFile[] files)
</code></pre>
<p>The customer's network admin manages the Windows Server connection by manually synchronizing the workstation username and password with a local user on the server. The odd thing about the error is that the user can write to the server both before and after the error, all without explicitly logging on.</p>
<p>Can you explain why the error occurs and offer a solution?</p>
http://stackoverflow.com/questions/1406808/wait-for-file-to-be-freed-by-process1Wait for file to be freed by processRefracted Paladin2009-09-10T18:02:22Z2009-09-10T18:19:50Z
<p>How do I wait for the File to be Free so that <code>ss.Save()</code> can overwrite it with a new one. If I run this twice close together(ish) I get a <code>generic GDI+</code> error.</p>
<pre><code> ///<summary>
/// Grabs a screen shot of the App and saves it to the C drive in jpg
///</summary>
private static String GetDesktopImage(DevExpress.XtraEditors.XtraForm whichForm)
{
Rectangle bounds = whichForm.Bounds;
// This solves my problem but creates a clutter issue
//var timeStamp = DateTime.Now.ToString("ddd-MMM-dd-yyyy-hh-mm-ss");
//var fileName = "C:\\HelpMe" + timeStamp + ".jpg";
var fileName = "C:\\HelpMe.jpg";
File.Create(fileName);
using (Bitmap ss = new Bitmap(bounds.Width, bounds.Height))
using (Graphics g = Graphics.FromImage(ss))
{
g.CopyFromScreen(whichForm.Location, Point.Empty, bounds.Size);
ss.Save(fileName, ImageFormat.Jpeg);
}
return fileName;
}
</code></pre>
http://stackoverflow.com/questions/1327521/ioexception-on-datagridview-writing-to-text-file-c1IOException on DataGridView writing to text file C#Ric Coles2009-08-25T11:02:13Z2009-08-25T11:22:58Z
<p>Good morning all,</p>
<p>I'm having a few problems with a method in my C# code that should enable a DataGridView to be saved to a .txt file.</p>
<p>The code is as below:</p>
<pre><code>private void saveToTxt_Btn_Click(object sender, EventArgs e)
{
filenameText.Text = serviceDataGrid.Rows.Count.ToString();
//string toOutFile = @"C:\" + filenameText.Text+".txt";
string toOutFile = @"C:\hello.txt";
FileStream toFile = new FileStream(toOutFile, FileMode.Create);
TextWriter toText = new StreamWriter(toOutFile);
int count = serviceDataGrid.Rows.Count;
toText.WriteLine("\t\t" + filenameText.Text);
toText.WriteLine("\t\t" + directoryText.Text+"\n\n");
for (int row = 0; row < count-1; row++)
{
toText.WriteLine(serviceDataGrid.Rows[row].Cells[0].Value.ToString());
}
toText.Close();
toFile.Close();
}
</code></pre>
<p>The following line is returning the error:</p>
<pre><code>TextWriter toText = new StreamWriter(toOutFile);
</code></pre>
<blockquote>
<p><strong>IOException was unhandled.</strong>
The process cannot access the file 'C:\hello.txt' because it is being used by another process.</p>
</blockquote>
<p>I'm not entirely sure what the problem is, but it would suggest there are conflicts between FileStream and TextWriter.</p>
<p>Can anybody shed any light on this?
Regards</p>
http://stackoverflow.com/questions/1298018/error-creating-javax-microedition-rms-recordstore-in-netbeans-6-00Error creating javax.microedition.rms.RecordStore in NetBeans 6.0David2009-08-19T06:01:35Z2009-08-20T03:37:15Z
<p>I'm trying to write an application with J2ME that uses <code>javax.microedition.rms.RecordStore</code> to store persistent data. I'm developing this project in NetBeans 6.0 and J2ME 2.2 on Gentoo. When I try to run the project, I get an error because apparently the record store can't be created. Here's a sample of output including the stack trace:</p>
<pre>jar:
pre-run:
cldc-run:
Copying 1 file to /home/dzaslavs/ellipsix/programming/cataschedule/dist/nbrun1623864904410254936
Copying 1 file to /home/dzaslavs/ellipsix/programming/cataschedule/dist/nbrun1623864904410254936
Jad URL for OTA execution: http://localhost:8082/servlet/org.netbeans.modules.mobility.project.jam.JAMServlet/home/dzaslavs/ellipsix/programming/cataschedule/dist//CATASchedule.jad
Starting emulator in execution mode
Running with storage root rms
javax.microedition.rms.RecordStoreException: error opening record store file
at javax.microedition.rms.RecordStore.(RecordStore.java:2150)
at javax.microedition.rms.RecordStore.openRecordStore(RecordStore.java:208)
at net.ellipsix.cata.StopRecordStore.(StopRecordStore.java:48)
at net.ellipsix.cata.CATAMIDlet.getStopList(CATAMIDlet.java:169)
at net.ellipsix.cata.CATAMIDlet.startMIDlet(CATAMIDlet.java:64)
at net.ellipsix.cata.CATAMIDlet.startApp(CATAMIDlet.java:449)
at javax.microedition.midlet.MIDletProxy.startApp(MIDletProxy.java:44)
at com.sun.midp.midlet.Scheduler.schedule(Scheduler.java:372)
at com.sun.midp.main.Main.runLocalClass(Main.java:461)
at com.sun.midp.main.Main.main(Main.java:126)
</pre>
<p>I've found a link to what I <em>think</em> is the source of <code>RecordStore</code>, where the exception is being thrown: <a href="http://jcs.mobile-utopia.com/jcs/78052_RecordStore.java" rel="nofollow">http://jcs.mobile-utopia.com/jcs/78052_RecordStore.java</a>. The relevant line is down near the bottom, basically like this:</p>
<pre><code>try {
...
}
catch (java.io.IOException ioe) {
...
throw new RecordStoreException("error opening record store " +
"file");
}
</code></pre>
<p>so that suggests that there is an IOException triggered when NetBeans tries to create the record store file. But why would that happen? The output is unfortunately silent on exactly why the record store creation is failing. Does anyone know what might be going wrong, or anything about how NetBeans handles <code>RecordStore</code>s internally?</p>
<p>Here's the constructor from my code in which the error is triggered, if it's relevant:</p>
<pre><code>public StopRecordStore() throws RecordStoreException {
this.store = RecordStore.openRecordStore("freqstops", true);
if (store.getNumRecords() == 0) {
try {
byte[] collegeAllen = new StopRecord((short)1, "College & Allen").toBytes();
store.addRecord(collegeAllen, 0, collegeAllen.length);
}
catch(IOException ioe) {
ioe.printStackTrace();
} // do nothing
}
}
</code></pre>
<p><em>EDIT</em>: ...no answers after 10 hours? Really?</p>
http://stackoverflow.com/questions/1273300/ioexception-while-reading-from-inputstream0IOException while reading from InputStreamDJayC2009-08-13T17:03:47Z2009-08-13T21:40:13Z
<p>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.</p>
<p>The only thing that is Android specific is this call:</p>
<pre><code>InputStream is = getResources().openRawResource(R.raw.myfile);
</code></pre>
<p>This returns an InputStream for a file from the Android assets. Anyways, here's where I run into the issue:</p>
<pre><code>bytes[] buffer = new bytes[2];
is.read(buffer);
</code></pre>
<p>When the read() executes it throws an IOException. The weird thing is that if I do two sequential single byte reads (or any number of single byte reads), there is no exception. Ie, this works:</p>
<pre><code>byte buffer;
buffer = (byte)buffer.read();
buffer = (byte)buffer.read();
</code></pre>
<p>Any idea why two sequential single byte reads work but one call to read both at once throws an exception? The InputStream seems fine... is.available() returns over a million bytes (as it should).</p>
<p>Stack trace shows these lines just before the InputStream.read():</p>
<pre><code>java.io.IOException
at android.content.res.AssetManager.readAsset(Native Method)
at android.content.res.AssetManager.access$800(AssetManager.java:36)
at android.content.res.AssetManager$AssetInputStream.read(AssetManager.java:542)
</code></pre>
<p>Changing the buffer size to a single byte still throws the error. It looks like the exception is only raised when reading into a byte array.</p>
<p><strong>If I truncate the file to 100,000 bytes (file is: 1,917,408 bytes originally) it works fine. Is there a problem with files over a certain size?</strong></p>
<p>Any help is appreciated! Thanks!</p>
http://stackoverflow.com/questions/588546/does-close-ever-throw-an-ioexception7Does close ever throw an IOException?TofuBeer2009-02-26T00:19:25Z2009-08-03T10:18:03Z
<p>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.</p>
<p>Are there any cases in which calling close on a Stream/Reader/Writer actually throws an IOException?</p>
<p>If an exception is actually thrown, how should it be dealt with?</p>
http://stackoverflow.com/questions/1089793/how-to-detect-system-io-ioexception-cause-by-existing-file1How to detect System.IO.IOException cause by existing file?acidzombie242009-07-07T00:13:16Z2009-07-07T04:38:48Z
<p>I want to create and open a file but only if it doesnt exist. I dont want to use a File.Exists because a thread by switch after it creating a file with the same name.</p>
<p>How do i check if the exception System.IO.IOException was caused by the file existing? I prefer not to parse the error msg (even tho it can be as simple as .indexOf("exist"))</p>
<p>How should i do this?</p>
http://stackoverflow.com/questions/374567/nunit-teardown-fails-what-process-is-accessing-my-files3NUnit [TearDown] fails -- what process is accessing my files?Stewart Johnson2008-12-17T13:46:55Z2009-07-02T09:04:25Z
<p>Hi All -</p>
<p><strong>Final Edit:</strong> I found a solution to the problem (at the bottom of the question).</p>
<p>I've got an Nunit problem that's causing me grief. <strong>Edit:</strong> actually it looks more like a SQLite problem, but I'm not 100% certain yet.</p>
<p>My TestFixture has a setup that generates a random filename that's used as a SQLite database in each of my tests.</p>
<pre><code>[Setup]
public void Setup()
{
// "filename" is a private field in my TestFixture class
filename = ...; // generate random filename
}
</code></pre>
<p>Each of my tests use this construct in each method that accesses the database:</p>
<pre><code>[Test]
public void TestMethod()
{
using (var connection = Connect())
{
// do database activity using connection
// I've tried including this line but it doesn't help
// and is strictly unnecessary:
connection.Close();
}
}
private DbConnection Connect()
{
var connection = DbProviderFactories.GetFactory("System.Data.SQLite").CreateConnection();
connection.ConnectionString = "Data Source=" + filename;
connection.Open();
return connection;
}
</code></pre>
<p>So that one helper method <code>Connect()</code> is used by all the methods. I'm assuming that the <code>using() { }</code> construct is calling <code>Dispose()</code> on the connection at the end of <code>TestMethod()</code> and freeing up the connection to the SQLite database file.</p>
<p>The problem I have is in my [TearDown] method:</p>
<pre><code> [TearDown]
public void Cleanup()
{
File.Delete(filename); // throws an IOException!
}
</code></pre>
<p>With every test I get an exception:</p>
<pre><code>System.IO.IOException: The process cannot access the file 'testdatabase2008-12-17_1030-04.614065.sqlite' because it is being used by another process.
</code></pre>
<p>All of the tests fail when they get to the [TearDown], so I end up with a directory full of temporary databse files (one per test, each with a different name) and a whole bunch of failed tests.</p>
<p>What process is accessing the file? I don't get how a second process could be accessing the file. The <code>connection</code> has completely gone out of scope and been Dispose()d by the time I'm trying to delete the file, so it can't be something SQLite related. Can it?</p>
<p>Note that I get the same result if I run all the tests or just a single test.</p>
<p><strong>Update:</strong> So I tried Dispose()ing of my DbCommand objects as well, since I wasn't doing that (I assumed that every other ADO.NET provider that Dispose()ing the DbConnection also Dispose()s any commands on that connection.) So now they look like:</p>
<pre><code>[Test]
public void TestMethod()
{
using (var connection = Connect())
{
using (var command = connection.CreateCommand())
{
// do database activity using connection
}
}
}
</code></pre>
<p>It didn't make any difference -- the File.Delete() line still throws an IOException. :-(</p>
<p>If I remove that one line in [TearDown] then all my tests pass, but I'm left with a whole bunch of temporary database files.</p>
<p><strong>Another Update:</strong>
This works just fine:</p>
<pre><code>var filename = "testfile.sqlite";
using (var connection = BbProviderFactories.GetFactory("System.Data.SQLite").CreateConnection())
{
connection.ConnectionString = "Data Source=" + filename;
connection.Open();
var createCommand = connection.CreateCommand();
createCommand.CommandText =
"CREATE TABLE foo (id integer not null primary key autoincrement, bar text not null);";
createCommand.ExecuteNonQuery();
var insertCommand = connection.CreateCommand();
insertCommand.CommandText = "INSERT INTO foo (bar) VALUES (@bar)";
insertCommand.Parameters.Add(insertCommand.CreateParameter());
insertCommand.Parameters[0].ParameterName = "@bar";
insertCommand.Parameters[0].Value = "quux";
insertCommand.ExecuteNonQuery();
}
File.Delete(filename);
</code></pre>
<p>I don't understand!</p>
<p><strong>Update:</strong> Solution found:</p>
<pre><code> [TearDown]
public void Cleanup()
{
GC.Collect();
File.Delete(filename);
}
</code></pre>
<p>I ran the unit tests through the debugger, and when the <code>[TearDown]</code> method starts there are definitely no references to the SQLite DbConnection around any more. Forcing a GC must clean them up though. There must be a bug in SQLite.</p>
http://stackoverflow.com/questions/1025407/system-io-ioexception-file-used-by-another-process1System.IO.IOException: file used by another processSrodriguez2009-06-22T03:51:41Z2009-06-22T04:27:29Z
<p>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, replace a string inside and copy it back to the original file (a simple search and replace inside a text file then).
I didn't really know how to do that as I'm adding lines to the original file, so i just create a copy of the file, (file.temp) copy also a backup (file.temp) then delete the original file(file) and copy the file.temp to file.
I get an exception while doing the delete of the file.
Here is the sample code:</p>
<pre><code>private static bool modifyFile(FileInfo file, string extractedMethod, string modifiedMethod)
{
Boolean result = false;
FileStream fs = new FileStream(file.FullName + ".tmp", FileMode.Create, FileAccess.Write);
StreamWriter sw = new StreamWriter(fs);
StreamReader streamreader = file.OpenText();
String originalPath = file.FullName;
string input = streamreader.ReadToEnd();
Console.WriteLine("input : {0}", input);
String tempString = input.Replace(extractedMethod, modifiedMethod);
Console.WriteLine("replaced String {0}", tempString);
try
{
sw.Write(tempString);
sw.Flush();
sw.Close();
sw.Dispose();
fs.Close();
fs.Dispose();
streamreader.Close();
streamreader.Dispose();
File.Copy(originalPath, originalPath + ".old", true);
FileInfo newFile = new FileInfo(originalPath + ".tmp");
File.Delete(originalPath);
File.Copy(fs., originalPath, true);
result = true;
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
return result;
}`
</code></pre>
<p>And the related exception</p>
<pre><code>System.IO.IOException: The process cannot access the file 'E:\mypath\myFile.cs' because it is being used by another process.
at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.File.Delete(String path)
at callingMethod.modifyFile(FileInfo file, String extractedMethod, String modifiedMethod)
</code></pre>
<p>Normally these errors come from unclosed file streams, but I've taken care of that. I guess I've forgotten an important step but cannot figure out where.
Thank you very much for your help,</p>
http://stackoverflow.com/questions/975578/threaded-serial-port-ioexception-when-writing0threaded serial port IOException when writingJohn McDonald2009-06-10T13:25:02Z2009-06-11T00:44:05Z
<p>Hi, I'm trying to write a small application that simply reads data from a socket, extracts some information (two integers) from the data and sends the extracted information off on a serial port. </p>
<p>The idea is that it should start and just keep going. In short, it works, but not for long. After a consistently short period I start to receive IOExceptions and socket receive buffer is swamped. </p>
<p>The thread framework has been taken from the MSDN serial port example. </p>
<p>The delay in send(), readThread.Join(), is an effort to delay read() in order to allow serial port interrupt processing a chance to occur, but I think I've misinterpreted the join function. I either need to sync the processes more effectively or throw some data away as it comes in off the socket, which would be fine. The integer data is controlling a pan tilt unit and I'm sure four times a second would be acceptable, but not sure on how to best acheive either, any ideas would be greatly appreciated, cheers.</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Text;
using System.IO.Ports;
using System.Threading;
using System.Net;
using System.Net.Sockets;
using System.IO;
namespace ConsoleApplication1
{
class Program
{
static bool _continue;
static SerialPort _serialPort;
static Thread readThread;
static Thread sendThread;
static String sendString;
static Socket s;
static int byteCount;
static Byte[] bytesReceived;
// synchronise send and receive threads
static bool dataReceived;
const int FIONREAD = 0x4004667F;
static void Main(string[] args)
{
dataReceived = false;
readThread = new Thread(Read);
sendThread = new Thread(Send);
bytesReceived = new Byte[16384];
// Create a new SerialPort object with default settings.
_serialPort = new SerialPort("COM4", 38400, Parity.None, 8, StopBits.One);
// Set the read/write timeouts
_serialPort.WriteTimeout = 500;
_serialPort.Open();
string moveMode = "CV ";
_serialPort.WriteLine(moveMode);
s = null;
IPHostEntry hostEntry = Dns.GetHostEntry("localhost");
foreach (IPAddress address in hostEntry.AddressList)
{
IPEndPoint ipe = new IPEndPoint(address, 10001);
Socket tempSocket =
new Socket(ipe.AddressFamily, SocketType.Stream, ProtocolType.Tcp);
tempSocket.Connect(ipe);
if (tempSocket.Connected)
{
s = tempSocket;
s.ReceiveBufferSize = 16384;
break;
}
else
{
continue;
}
}
readThread.Start();
sendThread.Start();
while (_continue)
{
Thread.Sleep(10);
;// Console.WriteLine("main...");
}
readThread.Join();
_serialPort.Close();
s.Close();
}
public static void Read()
{
while (_continue)
{
try
{
//Console.WriteLine("Read");
if (!dataReceived)
{
byte[] outValue = BitConverter.GetBytes(0);
// Check how many bytes have been received.
s.IOControl(FIONREAD, null, outValue);
uint bytesAvailable = BitConverter.ToUInt32(outValue, 0);
if (bytesAvailable > 0)
{
Console.WriteLine("Read thread..." + bytesAvailable);
byteCount = s.Receive(bytesReceived);
string str = Encoding.ASCII.GetString(bytesReceived);
//str = Encoding::UTF8->GetString( bytesReceived );
string[] split = str.Split(new Char[] { '\t', '\r', '\n' });
string filteredX = (split.GetValue(7)).ToString();
string filteredY = (split.GetValue(8)).ToString();
string[] AzSplit = filteredX.Split(new Char[] { '.' });
filteredX = (AzSplit.GetValue(0)).ToString();
string[] ElSplit = filteredY.Split(new Char[] { '.' });
filteredY = (ElSplit.GetValue(0)).ToString();
// scale values
int x = (int)(Convert.ToInt32(filteredX) * 1.9);
string scaledAz = x.ToString();
int y = (int)(Convert.ToInt32(filteredY) * 1.9);
string scaledEl = y.ToString();
String moveAz = "PS" + scaledAz + " ";
String moveEl = "TS" + scaledEl + " ";
sendString = moveAz + moveEl;
dataReceived = true;
}
}
}
catch (TimeoutException) {Console.WriteLine("timeout exception");}
catch (NullReferenceException) {Console.WriteLine("Read NULL reference exception");}
}
}
public static void Send()
{
while (_continue)
{
try
{
if (dataReceived)
{
// sleep Read() thread to allow serial port interrupt processing
readThread.Join(100);
// send command to PTU
dataReceived = false;
Console.WriteLine(sendString);
_serialPort.WriteLine(sendString);
}
}
catch (TimeoutException) { Console.WriteLine("Timeout exception"); }
catch (IOException) { Console.WriteLine("IOException exception"); }
catch (NullReferenceException) { Console.WriteLine("Send NULL reference exception"); }
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/966296/ioexception-for-drive-full-or-out-of-space3IOException for drive full or out of spaceBen2009-06-08T18:41:13Z2009-06-08T22:13:58Z
<p>I am looking for a list of platform-specific (JRE-specific) of IOException messages indicating disk is full or out of space.</p>
<p>So far I have:
Windows: "There is not enough space on the disk"
Solaris/Linux?: "Not enough space"
GCJ: "No space left on device".</p>
<p>I wish Java would make an IOException subclass for this...</p>
http://stackoverflow.com/questions/947995/getting-an-ioexception-on-multiple-writes-to-a-file0Getting an IOException on multiple writes to a file.zonkflut2009-06-04T00:22:58Z2009-06-04T23:07:02Z
<p>Hey,</p>
<p>I have implemented a csv file builder that takes in an xml document applies a xsl transform to it and appends it to a file.</p>
<pre><code>public class CsvBatchPrinter : BaseBatchPrinter
{
public CsvBatchPrinter() : base(".csv")
{
RemoveDiatrics = false;
}
protected override void PrintDocuments(System.Collections.Generic.List<XmlDocument> documents, string xsltFileName, string directory, string tempImageDirectory)
{
base.PrintDocuments(documents, xsltFileName, directory, tempImageDirectory);
foreach (var file in new DirectoryInfo(tempImageDirectory).GetFiles())
{
var destination = directory + file.Name;
if (!File.Exists(destination))
file.CopyTo(destination);
}
}
protected override void PrintDocument(XmlDocument document, string xsltFileName, string directory, string tempImageDirectory)
{
StringUtils.EscapeQuotesInXmlNode(document);
if (RemoveDiatrics)
{
var docXml = StringUtils.RemoveDiatrics(document.OuterXml);
document = new XmlDocument();
document.LoadXml(docXml);
}
using (var writer = new StreamWriter(string.Format("{0}{1}{2}", directory, "batch", FileExtension), true, Encoding.ASCII))
{
Transform(document, xsltFileName, writer);
}
}
public bool RemoveDiatrics { get; set; }
}
</code></pre>
<p>I have a large number of xml documents to add to this csv file and after multiple calls to it, it occasionally throws an IOException <code>The process cannot access the file 'batch.csv' because it is being used by another process.</code></p>
<p>Would this be be some sort of locking issue?</p>
<p>Could it be solved by:</p>
<pre><code>lock(this)
{
using (var writer = new StreamWriter(string.Format("{0}{1}{2}", directory, "batch", FileExtension), true, Encoding.ASCII))
{
Transform(document, xsltFileName, writer);
}
}
</code></pre>
<p><strong>EDIT:</strong></p>
<p>Here is my stack trace:<br /></p>
<pre><code>at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)
at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)
at System.IO.FileStream..ctor(String path, FileMode mode, FileAccess access, FileShare share, Int32 bufferSize, FileOptions options)
at System.IO.StreamWriter.CreateFile(String path, Boolean append)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding, Int32 bufferSize)
at System.IO.StreamWriter..ctor(String path, Boolean append, Encoding encoding)
at Receipts.Facade.Utilities.BatchPrinters.CsvBatchPrinter.PrintDocument(XmlDocument document, String xsltFileName, String directory, String tempImageDirectory) in CsvBatchPrinter.cs:line 37
at Receipts.Facade.Utilities.BatchPrinters.BaseBatchPrinter.PrintDocuments(List`1 documents, String xsltFileName, String directory, String tempImageDirectory) in BaseBatchPrinter.cs:line 30
at Receipts.Facade.Utilities.BatchPrinters.CsvBatchPrinter.PrintDocuments(List`1 documents, String xsltFileName, String directory, String tempImageDirectory) in CsvBatchPrinter.cs:line 17
at Receipts.Facade.Utilities.BatchPrinters.BaseBatchPrinter.Print(List`1 documents, String xsltFileName, String destinationDirectory, String tempImageDirectory) in BaseBatchPrinter.cs:line 23
at Receipts.Facade.Modules.FinanceDocuments.FinanceDocumentActuator`2.printXmlFiles(List`1 xmlDocuments, String tempImagesDirectory) in FinanceDocumentActuator.cs:line 137
</code></pre>
<p>and my base class:</p>
<pre><code>public abstract class BaseBatchPrinter : IBatchPrinter
{
private static readonly ILog Log = LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
protected readonly string FileExtension;
protected BaseBatchPrinter(string fileExtension)
{
FileExtension = fileExtension;
}
public void Print(List<XmlDocument> documents, string xsltFileName, string destinationDirectory, string tempImageDirectory)
{
Log.InfoFormat("Printing to directory: {0}", destinationDirectory);
PrintDocuments(documents, xsltFileName, destinationDirectory, tempImageDirectory);
}
protected virtual void PrintDocuments(List<XmlDocument> documents, string xsltFileName, string directory, string tempImageDirectory)
{
foreach (var document in documents)
{
PrintDocument(document, xsltFileName, directory, tempImageDirectory);
}
}
/// <summary>
/// Needs to Call Transform(XmlDocument document, string xsltFileName, string directory)
/// </summary>
protected abstract void PrintDocument(XmlDocument document, string xsltFileName, string directory, string tempImageDirectory);
protected void Transform(XmlDocument document, string xsltFileName, StreamWriter writer)
{
//TODO: look into XslCompiledTransform to replace the XslTransform
var xslTransform = new XslTransform();
xslTransform.Load(xsltFileName);
xslTransform.Transform(createNavigator(document), null, writer);
}
protected string CreateFileName(string directory, XmlDocument doc)
{
var conId = createNavigator(doc).SelectSingleNode(Config.SELECT_CONSTITUENT_ID_XPATH).Value;
return string.Format(@"{0}{1}{2}", directory, conId, FileExtension.IndexOf('.') > -1 ? FileExtension : "." + FileExtension);
}
protected XPathNavigator createNavigator(XmlDocument document)
{
return document.DocumentElement == null ? document.CreateNavigator() : document.DocumentElement.CreateNavigator();
}
}
</code></pre>
<p>Cheers.</p>
http://stackoverflow.com/questions/761377/java-io-ioexception-job-failed-when-running-a-sample-app-on-my-osx-with-hadoop1java.io.IOException: Job failed! when running a sample app on my osx with hadoop-0.19.1yogman2009-04-17T17:25:15Z2009-05-25T17:21:45Z
<pre>
bash-3.2$ echo $JAVA_HOME
/System/Library/Frameworks/JavaVM.framework/Versions/1.6/Home
bash-3.2$ bin/hadoop dfs -copyFromLocal conf /user/yokkom/input2
bash-3.2$ bin/hadoop jar hadoop-*-examples.jar grep input2 output 'dfs[a-z.]+'
09/04/17 10:09:32 INFO mapred.FileInputFormat: Total input paths to process : 10
09/04/17 10:09:33 INFO mapred.JobClient: Running job: job_200904171309_0001
java.io.IOException: Job failed!
at org.apache.hadoop.mapred.JobClient.runJob(JobClient.java:1232)
at org.apache.hadoop.examples.Grep.run(Grep.java:69)
at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:65)
at org.apache.hadoop.examples.Grep.main(Grep.java:93)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.hadoop.util.ProgramDriver$ProgramDescription.invoke(ProgramDriver.java:68)
at org.apache.hadoop.util.ProgramDriver.driver(ProgramDriver.java:141)
at org.apache.hadoop.examples.ExampleDriver.main(ExampleDriver.java:61)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:597)
at org.apache.hadoop.util.RunJar.main(RunJar.java:165)
at org.apache.hadoop.mapred.JobShell.run(JobShell.java:54)
at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:65)
at org.apache.hadoop.util.ToolRunner.run(ToolRunner.java:79)
at org.apache.hadoop.mapred.JobShell.main(JobShell.java:68)
</pre>
<p>Do anyone have any idea why this happens? The same job runs perfectly well on linux machines. And, after "Job failed" happens, the whole Hadoop cluster stops responding.</p>
<p>My MacOS version is 10.5.6.</p>
<p><em>EDIT</em> The same result for hadoop-0.20.1</p>
http://stackoverflow.com/questions/802967/why-does-httpservlet-throw-an-ioexception0Why does HttpServlet throw an IOException?Josh2009-04-29T15:42:12Z2009-04-29T15:47:37Z
<p>I get why an HttpServlet would throw ServletException, but why IOException? What was the reasoning behind this?</p>
http://stackoverflow.com/questions/780543/java-io-ioexception-invalid-argument2java.io.IOException: Invalid argumentLuixv2009-04-23T06:49:07Z2009-04-24T10:53:09Z
<p>Hi
I have a web application running in cluster mode with a load balancer.
It consists in two tomcats (T1, and T2) addressing only one DB.
T2 is nfs mounted to T1. This is the only dofference between both nodes.</p>
<p>I have a java method generating some files. If the request
runs on T1 there is no problem but if the request is running on node 2
I get an exception as follows:</p>
<pre><code>java.io.IOException: Invalid argument
at java.io.FileOutputStream.close0(Native Method)
at java.io.FileOutputStream.close(FileOutputStream.java:279)
</code></pre>
<p>The corresponding code is as follows:</p>
<pre><code>for (int i = 0; i < dataFileList.size(); i++) {
outputFileName = outputFolder + fileNameList.get(i);
FileOutputStream fileOut = new FileOutputStream(outputFileName);
fileOut.write(dataFileList.get(i), 0, dataFileList.get(i).length);
fileOut.flush();
fileOut.close();
}
</code></pre>
<p>The exception appears at the fileOut.close()</p>
<p>Any hint?</p>
<p>Luis</p>
http://stackoverflow.com/questions/771464/java-save-function-doesnt-work0Java save function doesn't workUlrik2009-04-21T07:37:31Z2009-04-21T15:53:59Z
<p>hey, I have this code that should save a java.util.Vector of custom serializable classes:</p>
<pre><code>if(filename.equals("")){
javax.swing.JFileChooser fc = new javax.swing.JFileChooser();
if(fc.showSaveDialog(this) == javax.swing.JFileChooser.APPROVE_OPTION){
filename = fc.getSelectedFile().toString();
}
}
try{
java.io.FileOutputStream fos = new java.io.FileOutputStream(filename);
java.io.ByteArrayOutputStream baos = new java.io.ByteArrayOutputStream();
java.io.ObjectOutputStream oos = new java.io.ObjectOutputStream(baos);
oos.writeObject((Object)tl.entities);
baos.writeTo(fos);
oos.close();
fos.close();
baos.close();
}catch(java.io.FileNotFoundException e){
javax.swing.JOptionPane.showMessageDialog(this, "FileNotFoundException: Could not save file: "+e.getCause()+" ("+e.getMessage()+")", "Error", javax.swing.JOptionPane.ERROR_MESSAGE);
}catch(java.io.IOException e){
javax.swing.JOptionPane.showMessageDialog(this, "IOException: Could not save file: "+e.getCause()+" ("+e.getMessage()+")", "Error", javax.swing.JOptionPane.ERROR_MESSAGE);
}
</code></pre>
<p>But when saving, it shows one of the defined dialog errors saying: "IOException: Could not save file: null (com.sun.java.swing.plaf.windows.WindowsFileChooserUI)" and there's an NullPointerException in the command line at javax.swing.plaf.basic.BasicListUI.convertModelToRow(BasicListUI.java:1251)</p>
http://stackoverflow.com/questions/267830/how-do-i-prevent-this-system-io-ioexception-when-copying-a-file0How do I prevent this System.IO.IOException when copying a file?John2008-11-06T07:10:11Z2009-04-07T19:27:42Z
<p>When I run the following code to test copying a directory, I get a System.IO.IOException when fileInfo.CopyTo method is being called. The error message is: "The process cannot access the file 'C:\CopyDirectoryTest1\temp.txt' because it is being used by another process." </p>
<p>It seems like there's a lock on file1 ("C:\CopyDirectoryTest1\temp.txt") which is created a few lines above where the error is occurring, but I don't know how to release this if so. Any ideas?</p>
<pre><code>using System;
using System.IO;
namespace TempConsoleApp
{
class Program
{
static void Main(string[] args)
{
string folder1 = @"C:\CopyDirectoryTest1";
string folder2 = @"C:\CopyDirectoryTest2";
string file1 = Path.Combine(folder1, "temp.txt");
if (Directory.Exists(folder1))
Directory.Delete(folder1, true);
if (Directory.Exists(folder2))
Directory.Delete(folder2, true);
Directory.CreateDirectory(folder1);
Directory.CreateDirectory(folder2);
File.Create(file1);
DirectoryInfo folder1Info = new DirectoryInfo(folder1);
DirectoryInfo folder2Info = new DirectoryInfo(folder2);
foreach (FileInfo fileInfo in folder1Info.GetFiles())
{
string fileName = fileInfo.Name;
string targetFilePath = Path.Combine(folder2Info.FullName, fileName);
fileInfo.CopyTo(targetFilePath, true);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/690242/how-to-best-wait-for-a-filelock-to-release4how to best wait for a filelock to releaseTjelle2009-03-27T15:32:20Z2009-03-30T11:00:11Z
<p>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 <a href="http://stackoverflow.com/questions/50744/wait-until-file-is-unlocked-in-net">questions</a> i should catch the IOException and retry until i can read.</p>
<p>But my question is how do i know for certain that the file is locked and that it is not another IOExcetpion that occurs. </p>
http://stackoverflow.com/questions/647846/the-device-is-not-connected-exception0The device is not connected exceptionDani2009-03-15T13:57:34Z2009-03-16T03:46:52Z
<p>I try to open a large number of files but after 5000 files or so I get </p>
<pre><code>Exception in thread "Main" java.io.IOException: The device is not connected
</code></pre>
<p><br></p>
<p>Is this the expected behavior? Is there a way around it? I want to leave my code as straightforward as possible.</p>
http://stackoverflow.com/questions/490421/deleting-a-file-using-j2me-throws-an-ioexception0Deleting a File using J2ME throws an IOExceptionparadius2009-01-29T03:49:21Z2009-03-10T07:35:59Z
<p>I am attempting to delete a file using J2ME's FileConnection.delete() method, but I an IOException is being thrown each time I call the delete() method. I have written a conditional statement to verify the existence of the file, but irregardless of that fact, an IOException is thrown.</p>
<p>According to the <a href="http://mobilezoo.biz/jsr/75/fileconnection/javax/microedition/io/file/FileConnection.html#delete()" rel="nofollow">FileConnection API</a>, when delete() is called on a FileConnection object, all streams associated with the object are closed, and an IOException is thrown if any subsequent actions on the streams associated with the particular file occur.</p>
<p>The file I am attempting to delete has been recorded within the same program, but after I call the delete() method, I call recordControl.reset(). Would this probably cause the IOException to be thrown?</p>
<p>What could be my problem?</p>
http://stackoverflow.com/questions/604449/forcing-filenotfoundexception1Forcing FileNotFoundExceptionmagneticMonster2009-03-02T23:10:55Z2009-03-03T01:51:53Z
<p>I'm writing a test for a piece of code that has an IOException catch in it that I'm trying to cover. The try/catch looks something like this:</p>
<pre><code>try {
oos = new ObjectOutputStream(new FileOutputStream(cacheFileName));
} catch (IOException e) {
LOGGER.error("Bad news!", e);
} finally {
</code></pre>
<p>The easiest way seems to make FileOutputStream throw a FileNotFoundException, but perhaps I'm going about this all the wrong way.</p>
<p>Anyone out there have any tips?</p>
http://stackoverflow.com/questions/442235/whats-the-best-way-to-synchronize-xmlwriter-access-to-a-file-to-prevent-ioexcept1What's the best way to synchronize XmlWriter access to a file to prevent IOExceptions?Jon Galloway2009-01-14T07:57:46Z2009-01-14T16:29:41Z
<p>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 IOException. What's the best way to lock or synchronize access?</p>
<p>Here's the function that's being used:</p>
<pre><code> public void SaveToDisk()
{
try
{
XmlWriterSettings settings = new XmlWriterSettings();
settings.Indent = true;
using (XmlWriter writer = XmlWriter.Create(SaveFileAbsolutePath, settings))
{
XamlWriter.Save(this, writer);
writer.Close();
}
}
catch (Exception ex)
{
// Log the error
System.Diagnostics.Debug.WriteLine(ex.Message);
// Rethrow so we know about the error
throw;
}
}
</code></pre>
<p>UPDATE: It looks like the problem isn't just from calls to this function, but because another thread is reading the file while this function is writing to is. What's the best way to lock so we don't try to write to the file while it's being read?</p>
http://stackoverflow.com/questions/361609/java-ioexception-only-when-running-new-java-1-6-someone-please3Java IOException only when running new Java 1.6 - someone pleaseSir Psycho2008-12-12T01:11:57Z2008-12-15T22:00:33Z
<p>Hi,</p>
<p>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 the document is located. I assume it copies this file to the users machine for editing. I wish I knew more but I don't have the source...dam!</p>
<p>we are getting a java.io.IOException on a machine running XP-IE6-Java 1.6. This problem doesn't happen on our older Win2K-IE6-Java 1.3 so we are certain its isolated to the desktop and not the server (99% sure anyway).</p>
<p>A little info: If you try to run the applet twice in a row, it works the second time. The first time it fails. Also, the error message box appears BEFORE the orange java loading logo appears embedded in the browser.</p>
<p>I have also entered in the following information into the policy file and reloaded the policy file via the console.</p>
<pre><code>grant codeBase "http://intranetserver/*" {
permission java.security.AllPermission;
};
</code></pre>
<p>here is a dump of the stack trace. Thanks for your time :-)</p>
<pre>
java.io.IOException: Write error
at java.io.FileOutputStream.writeBytes(Native Method)
at java.io.FileOutputStream.write(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.read(Unknown Source)
at sun.net.www.protocol.http.HttpURLConnection$HttpInputStream.close(Unknown Source)
at com.docscience.dlstools.browser.editor.HTMLDocumentLoader.loadDocument(HTMLDocumentLoader.java:94)
at com.docscience.dlstools.browser.editor.HTMLDocumentLoader.loadDocument(HTMLDocumentLoader.java:113)
at com.docscience.dlstools.browser.editor.HTMLDocumentLoader.loadDocument(HTMLDocumentLoader.java:126)
at com.docscience.dlstools.browser.editor.dsBrowserEditor.loadPage(dsBrowserEditor.java:1623)
at com.docscience.dlstools.browser.editor.dsBrowserEditor.loadFile(dsBrowserEditor.java:1873)
at com.docscience.dlstools.browser.editor.dsBrowserEditor.(dsBrowserEditor.java:201)
at com.docscience.dlstools.browser.editor.DLSBrowserEditor.init(DLSBrowserEditor.java:38)
at sun.applet.AppletPanel.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
</pre>
http://stackoverflow.com/questions/300779/microsoft-net-and-the-multicore-cpu-of-doom2Microsoft.NET and the Multicore CPU of DoomPeter Wone2008-11-19T01:45:52Z2008-11-21T04:29:01Z
<h2>The question proper</h2>
<p>Has anyone experienced this exception on a <strong>single core</strong> machine?</p>
<blockquote>
<p><code>The I/O operation has been aborted because of either a thread exit or an application request.</code></p>
</blockquote>
<h2>Some context</h2>
<p>On a single CPU system, only one MSIL instruction is executed at a time, threads notwithstanding. Between operations, the runtime gets to do its housekeeping.</p>
<p>Introduce a second CPU (or a second core) and it becomes possible to have an operation execute <em>while</em> the runtime does housekeeping. As a result, code that works perfectly on a single CPU machine may crash - or even induce a bluescreen - when executed in a multcore environment. </p>
<p>Interestingly, HyperThreaded Pentiums do <em>not</em> manifest the problem.</p>
<p>I had sample code that worked perfectly on a single core and flaked on a multicore CPU. It's around somewhere but I'm still trying to find it. The gist of it was that when it was implemented as Visitor pattern, it would flake after an unpredictable number of iterations, but moving the method into the object on which the visitor had operated made the problem disappear. </p>
<p>To me this suggests that the framework has some kind of internal hash table for resolving object references, and on a multicore system a race condition exists with respect to accessing this.</p>
<p>I also currently have code using APM to process serial comms. It used to intermittently bluescreen inside the virtual comport driver for my USB serial adaptor, but I fixed this by doing a <code>Thread.Sleep(0)</code> after every <code>Stream.EndRead(IAsyncResult)</code> </p>
<p>At random intervals, when the AsyncCallback I supply to <code>Stream.BeginRead(...)</code> is invoked and the handler tries to invoke <code>Stream.EndRead(IAsyncResult)</code>, it throws an <code>IOException</code> stating that <code>The I/O operation has been aborted because of either a thread exit or an application request.</code></p>
<p>I suspect that this too is multicore related and that some sort of internal error is killing the wait thread, leading to this behaviour. If I am right about this then the framework has serious flaws in the context of a multicore environment. While there are workarounds such as I have mentioned, you can't always apply them because sometimes they need to be applied <em>inside</em> other framework code.</p>
<p>For example, if you search the net regarding the above IOException you will find it affecting code written by people who clearly don't even know they are using multiple threads because it happens under the covers of framework convenience wrappers.</p>
<p>Microsoft tends to blow off these bug reports as unreproduceable. I suspect this is because the problem only occurs on multicore systems and bug reports like <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=266425" rel="nofollow">this one</a> don't mention the number of CPUs. </p>
<p>So... please help me pin down the problem. If I'm right about this I'm going to have to be able to prove it with repeatable test cases, because what I think is wrong is going to entail bugfixes in both framework and runtime.</p>
<p><hr /></p>
<p>It has been suggested that the problem is is more likely to be my code than the framework. </p>
<p>Investigating variant A of the issue, I have transplanted the problem code into a sample app and pared it down until the only things left were thread setup and method invocations that worked on one CPU and failed on two. </p>
<p>Variant B I have not so tested, because I no longer have any single core systems. So I repeat the question: has anyone seen this exception on a single core platform?</p>
<p>Unfortunately no-one can confirm my suspicion, only refute it. </p>
<p>It is not helpful to tell me that I am fallible, I am already aware of this. </p>
<p>If you know of a way to pin a .NET application to a single CPU it would be very handy for figuring this out. ---Thanks for the VM suggestion. I will do exactly that, good call.</p>