Results 1 to 3 of 3
Thread: Searching issue
- 01-28-2011, 01:06 PM #1
Member
- Join Date
- Sep 2010
- Posts
- 7
- Rep Power
- 0
Refreshing JTextArea
I made a program to search a file for me, however I do not know how to show the findings. The current set up is
[JTextField][Search Button]
[
JTextArea
]
Is there a way to make the data show up in the JTextArea without having to show the whole entire document which consists of over a million lines?
ThanksLast edited by RKhadder; 01-28-2011 at 01:24 PM.
- 01-28-2011, 09:34 PM #2
Moderator
- Join Date
- Feb 2009
- Location
- New Zealand
- Posts
- 4,537
- Rep Power
- 11
You don't say what the program is producing as a result of its search. Supposing that the document is text and you are getting an character index of the start of the match you could extract a portion of the document and display that.
For instance if the text were natural language you could search back and forwards from the match location to locate '.' and display the sentence containing the match. Or you could display the entire line on which the match occurs along with the line number. (If the file is big and you are searching line by line then this latter approach would seem the most natural.) Or there might be some location information embedded in the document itself (like chapter/section/subsection numbers) and you might display the appropriate subsection.
All sorts of display options are possible. Basically you should decide what you want the specifications of your text area to be - what makes sense for your application. And write the code for that.
- 01-28-2011, 11:05 PM #3
Member
- Join Date
- Oct 2010
- Posts
- 63
- Rep Power
- 0
Similar Threads
-
Searching
By peliukasss in forum LuceneReplies: 0Last Post: 04-07-2010, 01:05 AM -
Searching in several fields
By ivaneggel in forum LuceneReplies: 0Last Post: 11-11-2009, 09:24 AM -
Searching Arrays
By BHCluster in forum New To JavaReplies: 3Last Post: 07-26-2008, 05:55 AM -
searching within a JList
By newtojava7 in forum New To JavaReplies: 1Last Post: 03-10-2008, 12:12 AM -
searching
By nalinda in forum New To JavaReplies: 3Last Post: 12-06-2007, 02:56 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks