Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have declared and initialed say a String temp = null;

through the program i am changing the value of temp by

temp = temp + folders[i] + newline;

and then write this String temp to a text file.

Now the issue is, every time I write it to the file, the word "NULL" gets printed too.

Please suggest me a work around.

share|improve this question

2 Answers

up vote 6 down vote accepted

initialize temp to "" instead of null

share|improve this answer
oh shit. it was that easy. how did i miss it. Thanks. – Abhishek Nandgaonkar Apr 29 '12 at 4:39
that's why SO exists! if you look through some of my questions, you'll see where I made similar goofs :^) – jcomeau_ictx Apr 29 '12 at 4:42
true. SO rocks.. :) – Abhishek Nandgaonkar Apr 29 '12 at 4:45
temp = temp + folders[i] + newline;

is

temp = null + folders[i] + newline;

so it will print null in the file use "" instead

share|improve this answer
thanks for that. it helped. – Abhishek Nandgaonkar Apr 29 '12 at 4:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.