Results 1 to 6 of 6
Thread: file read problems in java
- 04-18-2009, 04:08 AM #1
Member
- Join Date
- Apr 2009
- Posts
- 2
- Rep Power
- 0
- 04-18-2009, 04:16 AM #2
Member
- Join Date
- Apr 2009
- Posts
- 8
- Rep Power
- 0
what do you mean by continously?
and what classes are you using to read the files
- 04-18-2009, 04:27 AM #3
Member
- Join Date
- Apr 2009
- Posts
- 2
- Rep Power
- 0
a file after another
File file = new File(filename); // different file name come in different exections
FileInputStream fis = null;
BufferedInputStream bis = null;
DataInputStream dis = null;
fis = new FileInputStream(file);
bis = new BufferedInputStream(fis);
dis = new DataInputStream(bis);
while (dis.available() != 0)
{
String nameVal=dis.readLine();
}
- 04-18-2009, 05:09 AM #4
Well you're only reading from one file there, and not doing anything with it. You need to clarify what your question/problem is.
Don't forget to mark threads as [SOLVED] and give reps to helpful posts.
How To Ask Questions The Smart Way
- 04-18-2009, 05:11 AM #5
Member
- Join Date
- Apr 2009
- Posts
- 8
- Rep Power
- 0
are you closing all your streams after using them?
- 04-18-2009, 11:27 AM #6
- Join Date
- Jul 2007
- Location
- Colombo, Sri Lanka
- Posts
- 11,374
- Blog Entries
- 1
- Rep Power
- 18
It's better to show your whole code, if it's not too long, here.
1. How did you start different executions.
2. What's the content of the first file, you said that only second file contain ASCII, so on the first one?
Similar Threads
-
help to read .pst file through java
By umadas in forum Advanced JavaReplies: 2Last Post: 12-19-2010, 04:32 AM -
How to read Excel file with java
By chetan-24 in forum New To JavaReplies: 5Last Post: 04-22-2009, 05:11 PM -
Executable java to read and write to a txt file
By njoymirror in forum New To JavaReplies: 2Last Post: 03-21-2009, 01:19 AM -
File read/write problems
By p900128 in forum New To JavaReplies: 4Last Post: 06-27-2008, 12:15 AM -
How to read a text file from a Java Archive File
By Java Tip in forum Java TipReplies: 0Last Post: 02-08-2008, 09:13 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks