文件的读取操作问题:下面的程序实现了将文件中的数据读入到程序中的功能,要使程序能够正常运行,请完成程序中缺失的代码。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) 数组中最后一个元素的索引是多少?
使用下面的类定义回答下列问题。publicclassTemperature {intcurrentTemp;String warningLight;publicvoidsetCurrentTemp(inttemp) {currentTemp = temp;}publicString getWarningLight(intcurrentTemp) {String tempColour = "";switch(currentTemp) {case10: tempColour = "blue";break;case20: tempColour = "orange";break;case30: tempColour = "red";break;}returntempColour;}}1)为此类命名一个字段属性。2) setCurrentTemp方法的参数类型是什么?3) getWarningLight方法的返回值类型是什么?
合伙企业是指自然人、法人和其他组织按照《中华人民共和国合伙企业法》在中国境内设立的普通合伙企业和有限合伙企业。( )
A. 对
B. 错