Forum: Java Aug 14th, 2007 |
| Replies: 3 Views: 5,785 I think it's better to save every paragraph as a different insert in a table. |
Forum: Java Aug 14th, 2007 |
| Replies: 3 Views: 5,785 Actually I want to make some searches and for this reason and because of file length I think that is better to save text into database.
Searches like find the 10th, 100th word of text.
Which... |
Forum: Java Aug 13th, 2007 |
| Replies: 3 Views: 5,785 Hi,
I want to save a .txt file into database using java language, how can it is possible ?
The .txt file has one word per line and I would like when the program find a string like "<P>" to... |
Forum: Java Jun 8th, 2007 |
| Replies: 8 Views: 9,497 Hi,
I would like to ask if anyone knows how can I delete empty lines from a file.
I thought that I have to crate a loop like
FileInputStream fstream = new FileInputStream("input.txt");... |
Forum: Java Jun 7th, 2007 |
| Replies: 5 Views: 4,234 Thanks a lot Ezzaral for your help.
The program works nearly perfect.
The only problem I have is that I can't replace character '.'.
I read that fullstop is special character and so I have to... |
Forum: Java Jun 6th, 2007 |
| Replies: 5 Views: 4,234 Thanks a lot for your answer.
I would like to ask you something more about split parameter.
How can I make a regular expression that delete the words that is like I. II. III. IV. .... and <P... |
Forum: Java Jun 6th, 2007 |
| Replies: 5 Views: 4,234 Hi,
I would like to help me with a problem I have.
I want to make a program that tokenize the text of an input file and create a new file with all the words (one word per line).
Because in... |