我得到两条不同的路径,基本上是文件路径,由spring ioc通过xml注入..
private String FilePath1; //it consists path c:\abc folder
private String FilePath2; //it consists of c:\abc\def
现在我需要检查一下,如果他们两个相等,那么他们应该进入 否则不是
请告知如何实现这一目标..
我试过的是......if (FilePath1 =! FilePath2)
{
filemove(mcrpFilePath, zipfileName); //i want if two file paths are not wqula then it // should go inside filemove
}
答案 0 :(得分:1)
使用equals()
比较Java字符串。原因是因为Strings是Java中的对象。因此,==运算符测试以查看两个对象是否指向同一个实例!而不是他们是否相等。