Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Linux Archive
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-02-2007, 06:01 AM
Member
 
Join Date: Jul 2007
Posts: 18
jason27131 is on a distinguished road
I really need help on this final project
I want to be able to read strings from a file, and search if a word im looking for is in there. if it is, a message pane will pop up saying yes. if not, then it will say no. Right now, i can't seem to get the two methods to connect. THeres always an error.

Code:
import java.io.*;
import java.util.*;
import java.awt.Color;
import javax.swing.*;

public class AccessFile {
public String phrase;

public void displayFile(String f) throws IOException {
String phrase = f;
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);


f = br.readLine();
while (f != null) {
System.out.println(f);
f = br.readLine();
}

br.close();
fr.close();
}

public void search(){
UIManager.put("OptionPane.background", Color.white);
UIManager.put("Panel.background", Color.white);
String word = JOptionPane.showInputDialog (null, "Please enter the word you are looking for", "Find", JOptionPane.OK_CANCEL_OPTION);

StringTokenizer st = new StringTokenizer(phrase);// Created a new object, that will allow me to tokenize String.

/** Basically, boolean starts out as false. if the StringTokenizer st has more token, it will keep
* reading each word. If one of the words in the string equal to the word the user entered, then
* boolean will turn true.
*/

boolean compare = false;

while (st.hasMoreTokens())
{
if (st.nextToken().equals (word))
compare = true;

}
/** If boolean was true, then it will show up the message screen saying word found. If boolean isn't true, then
* a screen will pop up saying you sure you entered it correctly.
*/

if (compare){
JOptionPane.showMessageDialog (null, "Word Found.", "Word is found!", JOptionPane.PLAIN_MESSAGE);
System.out.println((word));
}
else{
JOptionPane.showMessageDialog (null, "You sure you entered it correctly?", "Word is not found!", JOptionPane.PLAIN_MESSAGE);
}
}
}

Error:
NullPointerException:
at java.util.StringTokenizer.<init>(Unknown Source)
at java.util.StringTokenizer.<init>(Unknown Source)
at AccessFile.search(AccessFile.java:30)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknow n Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Un known Source)
at java.lang.reflect.Method.invoke(Unknown Source)
>

PLz help. i really need it. Some tips, editing of the code, etc.

Last edited by jason27131 : 08-02-2007 at 06:48 AM.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-02-2007, 06:55 AM
Senior Member
 
Join Date: Jul 2007
Posts: 130
cruxblack will become famous soon enough
This seems like the extension of the String Tokenizer problem u write in another thread
I'll try analyzin ur code for now, ill inform u if i get some progress, good luck with ur project
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 08-03-2007, 06:47 AM
Senior Member
 
Join Date: Jul 2007
Posts: 130
cruxblack will become famous soon enough
I don't know if u recognize, but u didn't put any link between the 2 method actually, what were u trying to do

From my point of view it seems that u were using te search method to search inside the file and find a matching words
The problem is in the search method, u declare the string tokenizer with the input parameter of phrase, in which phrase itself havent been initialized at all, check ur code, it's bit hard reading the code without the indents and tabs

This error
Code:
at java.util.StringTokenizer.<init>(Unknown Source) at java.util.StringTokenizer.<init>(Unknown Source) at AccessFile.search(AccessFile.java:30)
refer to the instantiation of the StringTokenizer after all, it could not find variable phrase, which leads to null
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Could anyone help with project? billdara New To Java 1 03-12-2008 07:05 PM
Project Help XxHEXSORxX AWT / Swing 1 02-17-2008 02:46 AM
Ant Project JavaForums Java Blogs 0 02-17-2008 12:53 AM
need help, weird question kinda. carlos123 New To Java 6 01-22-2008 05:19 AM
First Project Need Big Help earl New To Java 1 01-18-2008 08:12 PM


All times are GMT +3. The time now is 11:04 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org