Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经声明并初始化了一个 String temp = null;
通过程序我改变了 temp 的值
temp = temp + 文件夹 [i] + 换行符;
然后将此字符串临时写入文本文件。
现在的问题是,每次我将它写入文件时,也会打印出“NULL”这个词。
请建议我解决方法。
将 temp 初始化为 "" 而不是 null
temp = temp + folders[i] + newline;
是
temp = null + folders[i] + newline;
所以它会在文件中打印 null 使用 "" 代替