Search:

Type: Posts; User: Norm

Search: Search took 0.11 seconds.

  1. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    See the Scanner class for methods to read data from a file. There are many examples of code using the Scanner class's methods here on the forum. Do a Search.

    What have you tried? What problems...
  2. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    The program can not find the file in the location where you are looking. To find where the program is looking for the file, create a File object for the file you are trying to read and print that...
  3. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    Did you miss post#8?

    The File class has methods that return a list of the files in a folder. You can use that list to read the files in the folder one at a time.

    The steps are:
    get a list of...
  4. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    I see that the code is using the BufferedReader class's methods to read a file.
    What problems are you having reading the data?

    Please edit your post and wrap the code with code tags. Be sure...
  5. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    See the Scanner class for methods that can be used to read data from a single file.
    If you want to read all the files in a folder, you need to use the File class to get a list of the files in the...
  6. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    Is this what you are trying to do:
    Take a sentence of words, separate the words and assign some tag to each word.
    In your example, the tags were the UPPERCASE letters after each word.

    DT is the...
  7. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    One of the easy classes for reading a file is the Scanner class. It has many useful methods that allow you to read the file in different ways.


    The String class has many methods for searching a...
  8. Replies
    15
    Views
    6,488

    Re: Stop word removal and stemming

    What parts of your program design are you having problems with coding in java?
    Is your problem with designing a computer program
    or with coding a program design in java?
Results 1 to 8 of 8