如何判断是否为某文件
下面是代码,我的F盘中是有“a.mp3”的,但现在执行结果却hello,并且当==号换为!=好却能输出a.mp3.为何!package cn;
import
public class TestDemo8 {
public static void main(String[] args) {
File file = new File("F:"+File.separator+"a.mp3");
String string="a.mp3";
if (file.getName() != string) {
System.out.println(file.getName());
}else{
System.out.println("hello");
}
}
}
求细节