|
-
January 10th, 2001, 08:42 PM
#3
Re: how do i write data to text file
Error program below.. pls help ..
import java.io.*;
public class FileWriterTest
{
FileWriter famex = new FileWriter("amex.txt");
famex.write("Success write into text file");
famex.close();
}
********** Error code ************
FileWriterTest.java6: Type Expected
famex.write("Success write into text file");
^
********** End Error code ************
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|