Search:

Type: Posts; User: shubhen

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    3,560

    How to create arrays dynamically??

    i have an arraylist with object arrays in it
    the number of object arrays added to this arraylist may vary
    while iterating through this arraylist i want to dynamically create array for all entries...
  2. Replies
    8
    Views
    1,823

    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()...
  3. Replies
    8
    Views
    1,823

    Re: FILE READER PROGRAM

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

    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
  5. Replies
    2
    Views
    1,185

    Problem in the loops

    here is the oprogram for reading entries fro a file and making all possible combinations for the entries of those files each file contains 20,000
    entries the first while loop runs for all 20,000...
  6. Replies
    8
    Views
    1,823

    Re: FILE READER PROGRAM

    package combinator;

    import java.io.*;

    import Reader.HandsFileReader;

    public class FinalCombination{

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

    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 7 of 7