Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 07-07-2008, 01:56 AM
Member
 
Join Date: Nov 2007
Posts: 20
SCS17 is on a distinguished road
FileOutputStream question...
hello all,

I have a question regarding Files and Streams. What happens if you dont close the stream that you are using with the close().. ??!
I know that the OS allows a limited number of files to be opened at a time depending on your RAM and all of that stuff, but I mean on the short term,, what are the consequences ???
I read that the file gets locked and you cant open it or delete it.. but I dont see any of that happens ??!

Thanks for the help.


import java.io.*;

public class example {

public static void main (String args[]) {

FileOutputStream out = new FileOutputStream("example.txt");

out.write('H');
out.write('E');
out.write('L');
out.write('L');
out.write('O');
// out.close() ... what happens if we dont call this method ??


}
}
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 07-07-2008, 03:49 AM
Norm's Avatar
Senior Member
 
Join Date: Jun 2008
Location: SW MO, USA
Posts: 854
Norm is on a distinguished road
try it and see what happens. Don't exit the code by having a long sleep() before the exit and see if you can access the file from another program with the file still not closed.

In general its better to close files and finish processing rather than leave it to someone else to do it for you.
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 07-07-2008, 06:30 AM
Eranga's Avatar
Moderator
 
Join Date: Jul 2007
Location: Colombo, Sri Lanka
Posts: 2,959
Eranga has a spectacular aura aboutEranga has a spectacular aura about
Send a message via Yahoo to Eranga
Yes try and see. As Norm says, always better to looking for safe exist on the application. That's why you have to properly close all the opened files.
__________________
Use an appropriate Subject. "Help, urgent!" isn't one.
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

Has someone helped you? Then you can
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
their helpful post.

Want to make your IDE the best?
To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
(Close on September 4, 2008)

To view links or images in signatures your post count must be 10 or greater. You currently have 0 posts.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
question ayoood Java Announcements 6 07-07-2008 02:32 PM
JSP Question maheshkumarjava JavaServer Pages (JSP) and JSTL 1 03-29-2008 11:51 AM
a question slytheman Java Servlet 0 03-12-2008 05:11 AM
Need help on this question Deon New To Java 3 01-27-2008 04:58 PM
Question mark colon operator question orchid Advanced Java 3 04-30-2007 11:37 PM


All times are GMT +3. The time now is 08:55 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org