Search:

Type: Posts; User: ppata

Search: Search took 0.09 seconds.

  1. Replies
    4
    Views
    2,331

    [SOLVED] Re: Reading a file with bufferedreader

    Sorry! Nevermind, I figured out why!! Sheesh, that was simple :[
  2. Replies
    4
    Views
    2,331

    [SOLVED] Re: Reading a file with bufferedreader

    Thanks! This is what I came up with

    try
    {
    in = new BufferedReader(new FileReader(file));
    String read=in.readLine();
    String text=new String();

    while((read=in.readLine())!=null)
    {
  3. Replies
    4
    Views
    2,331

    [SOLVED] Reading a file with bufferedreader

    I can open a file and have it's contents read and printed out on the compiler, so I atleast know that it is reading the file. What I am trying to do though, is to set what is being read, into a...
Results 1 to 3 of 3