Welcome to Dream.In.Code
Become a Java Expert!

Join 150,063 Java Programmers for FREE! Get instant access to thousands of Java experts, tutorials, code snippets, and more! There are 1,749 people online right now. Registration is fast and FREE... Join Now!




file handling in java

 
Reply to this topicStart new topic

file handling in java

gul
3 Jun, 2008 - 10:23 PM
Post #1

New D.I.C Head
*

Joined: 29 May, 2008
Posts: 7

i want some file handling codes in java.how can we write and read file in java.
I want urgent replies. icon_up.gif
thnx.
User is offlineProfile CardPM
+Quote Post

lordms12
RE: File Handling In Java
4 Jun, 2008 - 01:45 AM
Post #2

D.I.C Regular
Group Icon

Joined: 16 Feb, 2008
Posts: 322



Thanked: 17 times
Dream Kudos: 225
My Contributions
Just simple examples, there are many other ways to read from files you have to search and find what fit wit you.

Write:
CODE
try {
    FileOutputStream fout=new FileOutputStream("C:\\1.out");
    OutputStreamWriter out= new OutputStreamWriter(fout);
        
    out.write("1212313121\n");//move to the next line
    out.write("1212313121\t");//make a tab
    out.close();
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}


Read:
CODE
try {
    FileInputStream fin = new FileInputStream("C:\\1.out");
    InputStreamReader in= new InputStreamReader(fin);

    System.out.print((char)in.read());
    in.close();
} catch (FileNotFoundException e) {
    e.printStackTrace();
} catch (IOException e) {
    e.printStackTrace();
}

User is offlineProfile CardPM
+Quote Post

1lacca
RE: File Handling In Java
4 Jun, 2008 - 02:04 AM
Post #3

code.rascal
Group Icon

Joined: 11 Aug, 2005
Posts: 3,822



Thanked: 12 times
My Contributions
Please use google for such common questions.
There are very good examples here. (and some more in the nio package)
Also, please not that asking for urgent replies won't make answering any faster. If we know the answer, we'll answer, sooner or later, when we have time to do so.
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 1/8/09 10:39PM

Be Social

Dream.In.Code RSS Feed Dream.In.Code LinkedIn Group Follow Us On Twitter

Live Java Help!

Java Tutorials

Reference Sheets

Java Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month