import java.io.FileOutputStream;
手动导入这个包的时候会报:The import java.io.FileOutputStream conflicts with a type defined in the same file
这个错误
FileOutputStream fos = new FileOutputStream("d:\\demo.txt");编译不同过,错误提示是让把new FileOutputStream("d:\\demo.txt");括号中的"d:\\demo.txt"移除掉
很奇怪的问题,我看一下我的代码中导的包没有错误啊
|
|