题目内容

设有字符串String s = "莫愁前路无知己,天下谁人不识君。";,则表达式s.indexOf('君')的值是_______。

查看答案
更多问题

Java中要使用外部类或接口,可以通过关键字_________引入相关的类、接口或包。

文件的读取操作问题:下面的程序实现了将文件中的数据读入到程序中的功能,要使程序能够正常运行,请完成程序中缺失的代码。import java.io.*;public class FileOperation {public static void main(String[] args){File file = new File("D:\\MyPro.java");try {_____(1)_____ in = new FileInputStream(file); //1. 建立输入流byte[] buff = new byte[(int) file.length()];in.read(buff); //2. 将文件中的数据读入byte数组______(2)___________; //3. 关闭流对象} catch(FileNotFoundException e) {System.err.print("找不到文件!");}catch (IOException e) { System.err.println("输入输出异常!"); }}}

以下代码的功能是实现对指定文件的复制功能,请阅读程序完成程序中缺失的代码。import java.io.*;public class CopyFile {public static void main(String[] args) throws IOException {File file= new File("E:\\MyPicture2021.jpg");FileInputStream in = new FileInputStream(file);_____(1)___________ out = new FileOutputStream("D:\\copy\\"+file.getName());byte[] data = new byte[(int) file.length()];in.read(data);out.write(data);in.close();___(2)_______ ;//关闭输出流对象}}

看下面的数组定义:int[] numbers = new int[50];a) 数组有多少个元素?b) 数组中第一个元素的索引是多少?c) 数组中最后一个元素的索引是多少?

答案查题题库