The function rewind can .? move the file pointer to the end of the file.|move the file pointer to the specific location of the file.|move the file pointer to the beginning of the file.|move the file pointer to the location of the next character.
The function rewind can .? move the file pointer to the end of the file.|move the file pointer to the specific location of the file.|move the file pointer to the beginning of the file.|move the file pointer to the location of the next character.
如何定义一个文件读写变量? A: FILE *file; B: FILE file; C: FILE &file; D: file *file;
如何定义一个文件读写变量? A: FILE *file; B: FILE file; C: FILE &file; D: file *file;
使用函数()来检查此文件是否是上传文件。 A: uploaded_file() B: move_uploaded_file() C: move_file() D: is_uploaded_file()
使用函数()来检查此文件是否是上传文件。 A: uploaded_file() B: move_uploaded_file() C: move_file() D: is_uploaded_file()
创建一个d盘aa文件夹下news.txt文件对象,以下正确的是 A: File file = new File("d:/aa"); B: File file = new File("d:/aa/news.txt"); C: File file = new File("d:/news.txt"); D: File file = new File("d:\aa\news.txt");
创建一个d盘aa文件夹下news.txt文件对象,以下正确的是 A: File file = new File("d:/aa"); B: File file = new File("d:/aa/news.txt"); C: File file = new File("d:/news.txt"); D: File file = new File("d:\aa\news.txt");
在PHP中,可以使用()函数来实现文件上传功能。 A: move_uploaded_file() B: uploaded_file() C: move_file() D: move_uploaded()
在PHP中,可以使用()函数来实现文件上传功能。 A: move_uploaded_file() B: uploaded_file() C: move_file() D: move_uploaded()
下列__________说法是正确的?I:File file = new File("input.txt");try (Scanner input = new Scanner(file)) { String line = input.nextLine();}II:try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}III:File file;try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}IV:File file;Scanner input;try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine();} A: I B: II C: III D: IV
下列__________说法是正确的?I:File file = new File("input.txt");try (Scanner input = new Scanner(file)) { String line = input.nextLine();}II:try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}III:File file;try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine();}IV:File file;Scanner input;try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine();} A: I B: II C: III D: IV
使用File file=new File("c:myletter
使用File file=new File("c:myletter
创建文件file的命令是()。 A: mv file B: mkdir file C: rm file D: cp file
创建文件file的命令是()。 A: mv file B: mkdir file C: rm file D: cp file
3.1 下面是创建File对象的语句,错误的是( ) A: File f=new File("d:\\text.txt"); B: File f=new File("d: "); C: File f=new File("d:","text.txt"); D: File f=new File("d:\text.txt");
3.1 下面是创建File对象的语句,错误的是( ) A: File f=new File("d:\\text.txt"); B: File f=new File("d: "); C: File f=new File("d:","text.txt"); D: File f=new File("d:\text.txt");
下面不属于File类构造方法的是()。 A: File(String filename) B: File(String directoryPath,String filename) C: File(File f, String filename) D: File( )
下面不属于File类构造方法的是()。 A: File(String filename) B: File(String directoryPath,String filename) C: File(File f, String filename) D: File( )