Results 1 to 7 of 7
Thread: Read Text File
- 08-13-2010, 12:04 PM #1
Senior Member
- Join Date
- Jul 2010
- Posts
- 101
- Rep Power
- 0
- 08-13-2010, 08:42 PM #2
Senior Member
- Join Date
- Feb 2010
- Location
- Ljubljana, Slovenia
- Posts
- 470
- Rep Power
- 4
I don't really know much about specific APIs, but standard java comes with a Scanner class that's pretty usefull for such tasks. Try to find an equivalent in your enviroment.
Ever seen a dog chase its tail? Now that's an infinite loop.
- 08-14-2010, 07:39 AM #3
Senior Member
- Join Date
- Jul 2010
- Posts
- 101
- Rep Power
- 0
Thanks for reply i have manage to read file but one more may it's a very common or normal.When i read file then code going in infinite loop.
In Test.txt file i have only two lineJava Code:try { Class classs = Class.forName("com.rim.samples.device.smsdemo.SmsTest"); InputStream is = classs.getResourceAsStream("/test.txt"); InputStreamReader isr = new InputStreamReader(is); char c; while ((c = (char)isr.read()) != -1) { System.out.print(c); } } catch(Exception ex) { System.out.println("Error: " + ex.toString()); }
check
Test
Please help me
- 08-14-2010, 10:02 AM #4
You neglected to tell us what gets printed inside the infinite loop.
db
- 08-14-2010, 10:34 AM #5
Senior Member
- Join Date
- Jul 2010
- Posts
- 101
- Rep Power
- 0
- 08-14-2010, 10:58 AM #6
- Join Date
- Sep 2008
- Location
- Voorschoten, the Netherlands
- Posts
- 11,394
- Blog Entries
- 7
- Rep Power
- 17
- 08-14-2010, 11:09 AM #7
Senior Member
- Join Date
- Jul 2010
- Posts
- 101
- Rep Power
- 0
Similar Threads
-
Read text file
By Sean04 in forum New To JavaReplies: 18Last Post: 06-16-2010, 01:43 AM -
Can't read from a text file
By kevin8160 in forum New To JavaReplies: 2Last Post: 02-07-2010, 06:45 PM -
Read from a text file?
By aaronfsimons in forum New To JavaReplies: 3Last Post: 05-01-2009, 04:42 AM -
read from text file
By rayda in forum New To JavaReplies: 5Last Post: 04-10-2009, 03:51 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