CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: J-Ideas

Search: Search took 0.05 seconds.

  1. Re: How to properly assign text file values to array in java

    so, what is a better approach to scanning buffer? when i look up java api, that is the only method available.
  2. Replies
    5
    Views
    4,284

    Re: IO Handling Problem

    i am thinking of if nothing in inputstream, sleep for 100ms, this is if your read is in a seperate thread from your write


    if(Inputstream.available()==0) Thread.sleep(100);
  3. Re: How to properly assign text file values to array in java

    keang is talking about this piece of code



    while (br.readLine()!= null) { // in the while condition, you read a line but didn't do anything.
    for(int ox=0;ox<5;ox++){
    q[ox]= new...
  4. Replies
    4
    Views
    3,265

    Re: RingQueue ADT nullpointer exception

    thanks keang, i have already figured out what my problem was shortly after i posted it. Sometimes the best solution to a problem is to take a rest and fresh yourself before continueing on it, haha
  5. Replies
    4
    Views
    3,265

    Re: RingQueue ADT nullpointer exception

    I am not sure if this will be useful... This is the method i used to set up my ringQueue. and it also belongs to the RingQueue class.



    public class RingQueue{
    ...
    ...

    /**...
  6. Replies
    4
    Views
    3,265

    RingQueue ADT nullpointer exception

    Hi, i am working on a generic RingQueue ADT, however i came across a nullpointer exception during runtime and i cannot figure out what exactly my problem was.



    /** Node of a singly linked list...
Results 1 to 6 of 6





Click Here to Expand Forum to Full Width

Featured