Hello,
I don't have any line number.
this is the code snippet:
Document doc;
IndexWriter writer;
.....
try{
writer.addDocument(doc);
}
catch(Exception ex){
ex.printStackTrace();
}
this is the output on Standard.out:
java.lang.NullPointerException
and nothing more.
The doc is not null and System.out.println(doc) seems to be ok. There is
no difference between the working 80% and the not working 20% doc's.
Thanks,
G�nter
> On Friday 21 February 2003 05:33, G�nter Kukies wrote:
>> Hello,
>>
>> writer.addDocument(doc) is throwing an NullPointerException. The
>> stacktrace from the catched Exception is only one line
>> "NullPointerException" without anything else. I open the IndexWriter
>> with create true. Run over the files in a Directory and add all found
>> documents. After that i close the indexwriter. 80% of the documents
>> were added without problems. The rest gets that NullPointerException.
>>
>> Any Ideas?
>
> Perhaps look at the line where the null pointer exception is thrown and
> see what happens? NullPointerException is thrown when a null reference
> is being de-referenced. Seeing the immediate cause should be easy,
> given line number.
>
> Perhaps you have added a field with null value? (just a guess, I don't
> know if that's even illegal).
>
> -+ Tatu +-
>
>
>
> ---------------------------------------------------------------------
> 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]