Search:

Type: Posts; User: shubhen

Search: Search took 0.18 seconds.

  1. Replies
    8
    Views
    1,840

    Re: FILE READER PROGRAM

    in another program in a package Reader.HeadFileReader.java with a method which has a return type BufferedReader object
    u can see the buffered reader references are assingned to hfr.readSingle()...
  2. Replies
    8
    Views
    1,840

    Re: FILE READER PROGRAM

    while((bs1=b1.readLine())!=null){
    while((bs2=b2.readLine())!=null){
  3. Replies
    8
    Views
    1,840

    Re: FILE READER PROGRAM

    i want outer loop to take one entry from the file1 den combine it with all entries in file 2 again take second entry from file 1 and combine it with all entry in file 2 and so on
  4. Replies
    8
    Views
    1,840

    Re: FILE READER PROGRAM

    package combinator;

    import java.io.*;

    import Reader.HandsFileReader;

    public class FinalCombination{

    HandsFileReader hfr=new HandsFileReader();
    BufferedReader b1,b2,s;
  5. Replies
    8
    Views
    1,840

    FILE READER PROGRAM

    This is my program in which m reading from a filr with approx 40000 Strings in which m making a combination of all 40000 strings with other using a while loop but the loop is running only for first...
Results 1 to 5 of 5