• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Does java contain any type of method or anything else possilbe to do this?

 
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I'd like to run a spell check on a simple .txt document created in notepad, I am creating an io program thats main class is FileTransfer thats constructor takes two string args, one is the file being copied the the other is the file being written to. I am using a string tokenizer to brake down each line, word by word. The program works great overall with a few functionalites i v added in so now i would like to a run spell check if thats possible. Does Java support that.

- I also have another class Disk which handles simple io exceptions that the program will come to during runtime.

-Kp
[ April 09, 2005: Message edited by: Kevin Peterson ]
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does Java support that, meaning "Is there a spellCheckFile()" method in the Java API somewhere?" No, sorry, there isn't. I googled "Java spell checker" and found this, though, which looks promising.
 
Kevin Peterson
Ranch Hand
Posts: 37
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Ernest.

-Kp
 
reply
    Bookmark Topic Watch Topic
  • New Topic