Click here to Skip to main content
15,920,801 members
Home / Discussions / Java
   

Java

 
AnswerRe: browser closing event mozilla firefox in java script Pin
fly90423-Jun-09 7:22
fly90423-Jun-09 7:22 
Questionsending AT commands Pin
ellis eghan23-Jun-09 1:31
ellis eghan23-Jun-09 1:31 
AnswerRe: sending AT commands Pin
Cedric Moonen23-Jun-09 2:00
Cedric Moonen23-Jun-09 2:00 
QuestionLip detectin (help needed) Pin
unlucky_dreamer22-Jun-09 7:45
unlucky_dreamer22-Jun-09 7:45 
AnswerDouble Post from C# Forum Pin
EliottA22-Jun-09 8:04
EliottA22-Jun-09 8:04 
Questionbrowser closing event mozilla firefox Pin
sanddepnamburi22-Jun-09 0:27
sanddepnamburi22-Jun-09 0:27 
Questionbrowser closing event mozilla firefox Pin
sanddepnamburi22-Jun-09 0:00
sanddepnamburi22-Jun-09 0:00 
Questionwhat is wrong with this method? Pin
scream2ice21-Jun-09 7:22
scream2ice21-Jun-09 7:22 
I have this method which is the 'find' mthod of a hash table....I don't know why it cannot find the record in a text file
  protected int findEntry(Object key) throws InvalidKeyException, IOException {
  int avail = 0;
  checkKey(key);
  int i = hashValue(key);
  int j = i;
  StudentRecord currentRecord=new StudentRecord();
  do {
    file.seek(i*StudentRecord.SIZE);
    if (currentRecord == null)   return -i - 1;  // entry is not found
    if (currentRecord.flag ==0) { // bucket is deactivated
  avail = i;      // remember that this slot is available
  i = (i + 1) % N;
    }
    else if (T.isEqualTo(key,currentRecord.stNr))  // we have found our entry
  return i;
    else // this slot is occupied--we must keep looking
  i = (i + 1) % N;
  } while (i != j);
  return -avail - 1;  // entry is not found
}

QuestionUrgent help needed Please...Hash Tables & Text Files Pin
scream2ice20-Jun-09 8:11
scream2ice20-Jun-09 8:11 
AnswerRe: Urgent help needed Please...Hash Tables & Text Files Pin
Nagy Vilmos21-Jun-09 22:09
professionalNagy Vilmos21-Jun-09 22:09 
GeneralRe: Urgent help needed Please...Hash Tables & Text Files Pin
scream2ice21-Jun-09 22:23
scream2ice21-Jun-09 22:23 
GeneralRe: Urgent help needed Please...Hash Tables & Text Files Pin
Nagy Vilmos24-Jun-09 0:57
professionalNagy Vilmos24-Jun-09 0:57 
Questiondatabase connection in java script Pin
ragini reddy20-Jun-09 0:42
ragini reddy20-Jun-09 0:42 
AnswerRe: database connection in java script Pin
Pavan_Putra25-Jun-09 19:42
Pavan_Putra25-Jun-09 19:42 
Questionnavigating through java tables Pin
ellis eghan19-Jun-09 0:22
ellis eghan19-Jun-09 0:22 
QuestionJSP / JAVA Upload Pin
pdoy070817-Jun-09 22:34
pdoy070817-Jun-09 22:34 
AnswerRe: JSP / JAVA Upload Pin
eric_zhang19-Jun-09 16:18
eric_zhang19-Jun-09 16:18 
QuestionGetting a URL [modified] Pin
sravyen17-Jun-09 9:25
sravyen17-Jun-09 9:25 
AnswerRe: Getting a URL Pin
eric_zhang19-Jun-09 16:25
eric_zhang19-Jun-09 16:25 
QuestionIs it possible to draw graphics on JButtons? Pin
Reagan Conservative17-Jun-09 8:29
Reagan Conservative17-Jun-09 8:29 
AnswerRe: Is it possible to draw graphics on JButtons? Pin
Nagy Vilmos18-Jun-09 1:05
professionalNagy Vilmos18-Jun-09 1:05 
GeneralRe: Is it possible to draw graphics on JButtons? Pin
Reagan Conservative18-Jun-09 3:06
Reagan Conservative18-Jun-09 3:06 
QuestionSerializable HashTable Pin
scream2ice17-Jun-09 5:45
scream2ice17-Jun-09 5:45 
AnswerRe: Serializable HashTable Pin
jschell17-Jun-09 11:33
jschell17-Jun-09 11:33 
QuestionCreate Social Bookmarks Menu Pin
lisa044017-Jun-09 5:43
lisa044017-Jun-09 5:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.