我想问你关于解释下面程序中 args.length !=2 的帮助。在我读过的书中,他们检查是否有两个文件,但为什么使用 ! 感叹号?这对我来说没有意义。我已经找到了关于 args.length 的信息,但即使在 stackowerflow 上也没有找到关于这个检查文件的信息,因此我在这里问。谢谢你。
java CopyFile first.txt second.txt - this is put on comand line
import java.io.*;
class CopyFile{
public static void main(String args[]) throws IOException{
int i;
FileInputStream fileIn = null;
FileOutputStream fileOut = null;
**//firstly check whether both two files has been set up**
if(args.length != 2) {
System.out.println("Using: CopyFile system");
return;
}
相关分类