 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Guest
|
Posted: Wed Dec 27, 2006 9:13 am Post subject: java.lang.StringIndexOutOfBoundsException: String index out |
|
|
hi
I have the problem in following code. The error already notified in
subject. Do needfull for ours.
public void ReadFile(String sFileName)
{
String inputLine = sFileName;
try
{
FileReader fr = new FileReader(inputLine);
BufferedReader is = new BufferedReader(fr);
while ((inputLine = is.readLine())!= null)
{
s += inputLine+"~";
}
PdfPrint(s);
fr.close();
is.close();
}
catch (IOException e)
{
System.out.println("IOException: " + e);
}
}
Thanks
krishna.v |
|
| Back to top |
|
 |
Kevin Dean [TeamB] Guest
|
Posted: Wed Dec 27, 2006 7:24 pm Post subject: Re: java.lang.StringIndexOutOfBoundsException: String index |
|
|
moorthymvk (AT) gmail (DOT) com wrote:
| Quote: | I have the problem in following code. The error already notified in
subject. Do needfull for ours.
|
In order to determine where the error resides, we'd have to see a complete
stack trace. At a guess, it's occurring in the PdfPrint() method, because
there's nothing in the code you've posted that would generate that
exception.
--
Kevin Dean [TeamB]
Dolphin Data Development Ltd.
http://www.datadevelopment.com/
NEW WHITEPAPERS
Team Development with JBuilder and Borland Enterprise Server
Securing Borland Enterprise Server
http://www.datadevelopment.com/papers/index.html
Please see Borland's newsgroup guidelines at
http://info.borland.com/newsgroups/guide.html |
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|