got it, thanx
 

________________________________

Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Verzonden: vr 2-2-2007 16:59
Aan: "<java-user"@lucene.apache.org
Onderwerp: RE: RE : indexWriter



I already tried that but does not help
do I also have to create a file in that dir? Or is it some other problem

import org.apache.lucene.index.IndexWriter;

File indexDir = new File("c:\\temp");

IndexWriter writer = new IndexWriter(indexDir, new StandardAnalyzer(), false);

________________________________

Van: Virlouvet Olivier [mailto:[EMAIL PROTECTED]
Verzonden: vr 2-2-2007 16:45
Aan: java-user@lucene.apache.org
Onderwerp: RE : indexWriter



Hi Erik

   The \ must be escaped in the path, i.e : ...new File("c:\\temp");

Regards,
Olivier

[EMAIL PROTECTED] a écrit : Hello,

Does anyone know why this does not work?
The fileDir is of the class File and points to an empty temp directory.
I tried switching true and false


import org.apache.lucene.index.IndexWriter;

File indexDir = new File("c:\temp");

IndexWriter writer = new IndexWriter(indexDir, new StandardAnalyzer(), false);


Regards,

Erik


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



              
---------------------------------
 Découvrez une nouvelle façon d'obtenir des réponses à toutes vos questions ! 
Profitez des connaissances, des opinions et des expériences des internautes sur 
Yahoo! Questions/Réponses.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to