用户可以利用或者工具栏上相应的按钮建立一个工作空间,建立工作空间需要设置()和()。A、工作空间路径B、工作空间名称C、工作空间大小D、工作空间时间

题目

用户可以利用或者工具栏上相应的按钮建立一个工作空间,建立工作空间需要设置()和()。

  • A、工作空间路径
  • B、工作空间名称
  • C、工作空间大小
  • D、工作空间时间

相似考题
更多“用户可以利用<File→New Workspace>或者工具栏上”相关问题
  • 第1题:

    在程序中,用户输入一个文件名,根据用户输入显示相应文件的信息。

    注意:请勿修改main()主方法和其他已有语句内容,仅在横线处填入适当语句。

    ______java.io.*;

    public class basic

    {

    public static void main(String[] args)

    {

    InputStreamReader reader;

    BufferedReader in;

    System.out.println("请输入文件名: ");

    try

    {

    reader=new InputStreamReader(______);

    in=new BufferedReader(reader);

    String filename=in.readLine();

    File file=new File(filename);

    System.out.println("文件名:"+file.______);

    System.out.println("路径:"+file.getAbsolutePath());

    System.out.println("大小:"+file.length());

    }

    catch(Exception e)

    {

    e.printStackTrace();

    }

    }

    }


    正确答案:import System.in getName()
    import System.in getName() 解析:本题考查知识点:Java类库中常用类和接口、文件和文件I/0、输入输出。解题思路:题中reader从系统获得输入流,从这个流中得到用户输入的字符串作为文件名,找到文件,进而得到文件的相关信息。Java的类库需要引入以后才能使用,关键字import就是声明需要引入的类或包。因此第1个空的答案是import。Java的输入输出是以流的形式来完成的。InputStreamReader的对象reader从系统输入中读取输入流,保存在相应的缓冲区中,因此第2个空的答案是System.in。BufferedReader对象则是从这个缓冲区中读取数据,使用BufferedReader类的readLine()方法即可获得输入流中的一行输入。在Java程序中,文件作为类的一个实例来处理,File类具有很多与文件相关的方法,比如获得上级目录名(getParent()方法)、路径(getPath()方法)等,第3个空就是使用getName()方法获取文件的文件名。

  • 第2题:

    用户可以利用或者工具栏上相应的按钮建立一个工作空间,建立工作空间需要设置()和()。

    A.工作空间路径

    B.工作空间名称

    C.工作空间大小

    D.工作空间时间


    参考答案:A, B

  • 第3题:

    What command would an operator use to move a file from the /old_dir directory to the /new_dir directory without changing the file name?()

    • A、mv /old_dir/file /new_dir
    • B、mv -p /old_dir/file /new_dir
    • C、mv -k /old_dir/file /new_dir
    • D、mv /old_dir/file /new_dir/new_file

    正确答案:A

  • 第4题:

    为文件c:/java/example/file.txt建立File对象file1可以采用()语句序列。

    • A、File file 1=new File(“c://java//example//file.txt”)
    • B、String path=”c:/java/example/”Filefile1=newFile(path,”oldfile.txt”)
    • C、File dir 1=new File(“c://java//example”)Filefile1=newFile(dir1,”oldfile.txt”)
    • D、File file 1=new File(“c:/java//example/file.txt”)

    正确答案:A,B,C

  • 第5题:

    利用()用户可以随心所欲地绘制出不同行高、列宽的各种不规则的复杂表格。

    • A、使用常用工具栏上的“插入表格”按钮
    • B、使用插入菜单
    • C、使用“表格和边框”工具绘制表格
    • D、使用绘图工具栏

    正确答案:C

  • 第6题:

    下列关于VisualFoxPro工具栏的叙述中,错误的是()。

    • A、工具栏可以显示或隐藏
    • B、可以修改和删除系统提供的工具栏
    • C、用户可以创建自己的工具栏
    • D、可以删除用户创建的工具栏

    正确答案:B

  • 第7题:

    Workspace用户本地终端的USB设备可以重定向到云桌面中使用。


    正确答案:正确

  • 第8题:

    You need to recommend a solution for deploying App2.What should you recommend?()

    • A、Deploy a new App-V package that contains App2.Stream the package to the client computers of the 10 users.
    • B、Deploy a new MED-V workspace that contains App2. Deploy the workspace to the client computers of  the 10 users.
    • C、On an RD Session Host server in the branch office, install and publish App2 by using RemoteApp. deploy the RemoteApp program as an MSI file.
    • D、On an RD Virtualization Host server in the branch office,create 10 Windows 7 VMs that contain App2. configure the new VMs as personal virtual desktops.

    正确答案:D

  • 第9题:

    单选题
    Which gets the name of the parent directory file “file.txt”?()
    A

     String name= File.getParentName(“file.txt”);

    B

     String name= (new File(“file.txt”)).getParent();

    C

     String name = (new File(“file.txt”)).getParentName();

    D

     String name= (new File(“file.txt”)).getParentFile();

    E

     Directory dir=(new File (“file.txt”)).getParentDir();  String name= dir.getName();


    正确答案: A
    解析: 暂无解析

  • 第10题:

    多选题
    创建一个向文件“file.txt”追加内容的输出流对象的语句有()。
    A

    FileOutputStream out=new FileOutputStream(“file.txt”,true);

    B

    OutputStream out=new FileOutputStream(“file.txt”,“append”);

    C

    OutputStream out=new FileOutputStream(“file.txt”);

    D

    FileOutputStream out=new FileOutputStream(new file(“file.txt”));

    E

    OutputStream out=new FileOutputStream(new File(“file.txt”),true.;


    正确答案: B,E
    解析: 暂无解析

  • 第11题:

    单选题
    What writes the text “ ” to the end of the file “file.txt”?()
    A

     OutputStream out= new FileOutputStream (“file.txt”);       Out.writeBytes (“ /n”);

    B

     OutputStream os= new FileOutputStream (“file.txt”, true);       DataOutputStream out = new DataOutputStream(os);  out.writeBytes (“ /n”);

    C

     OutputStream os= new FileOutputStream (“file.txt”);       DataOutputStream out = new DataOutputStream(os);  out.writeBytes (“ /n”);

    D

     OutputStream os= new OutputStream (“file.txt”, true);     DataOutputStream out = new DataOutputStream(os);  out.writeBytes (“ /n”);


    正确答案: C
    解析: 暂无解析

  • 第12题:

    多选题
    为文件c:/java/example/file.txt建立File对象file1可以采用()语句序列。
    A

    File file 1=new File(“c://java//example//file.txt”)

    B

    String path=”c:/java/example/”Filefile1=newFile(path,”oldfile.txt”)

    C

    File dir 1=new File(“c://java//example”)Filefile1=newFile(dir1,”oldfile.txt”)

    D

    File file 1=new File(“c:/java//example/file.txt”)


    正确答案: B,C
    解析: 暂无解析

  • 第13题:

    下面关于工具栏的叙述,不正确的是( )。

    A.用户可以创建自己的工具栏

    B.用户可以修改自己的工具栏

    C.用户可以删除自己创建的工具栏

    D.用户可以删除系统工具栏


    正确答案:D
    解析:对于用户创建的工具栏,用户可以删除和修改,但是不能删除系统工具栏。

  • 第14题:

    欲新建一个电路原理图文件应该执行()操作。

    • A、File/New/Schematic
    • B、File/New/PCB
    • C、File/New/SchematicLibrary
    • D、File/New/PCBLibrary

    正确答案:A

  • 第15题:

    Which two construct an OutputSream that appends to the file “file.txt”? ()

    • A、 OutputStream out=new FileOutputStream(“file.txt”);
    • B、 OutputStream out=new FileOutputStream(“file.txt”, “append”);
    • C、 FileOutputStream out=new FileOutputStream(“file.txt”, true);
    • D、 FileOutputStream out=new FileOutputStream(new file(“file.txt”));
    • E、 OutputStream out=new FileOutputStream(new File(“file.txt”)true);

    正确答案:C,E

  • 第16题:

    Word6.0允许用户自定义屏幕上所显示的工具栏,可以修改、删除或增加工具栏。


    正确答案:正确

  • 第17题:

    下面关于工具栏的叙述,错误的是()

    • A、可以创建用户自己的工具栏
    • B、可以修改系统提供的工具栏
    • C、可以删除用户创建的工具栏
    • D、可以删除系统提供的工具栏

    正确答案:D

  • 第18题:

    下面关于工具栏的叙述,不正确的是()。

    • A、用户可以创建自己的工具栏
    • B、用户可以修改系统工具栏
    • C、用户可以删除用户创建的工具栏
    • D、用户可以删除系统工具栏

    正确答案:D

  • 第19题:

    Which gets the name of the parent directory file “file.txt”?()

    • A、 String name= File.getParentName(“file.txt”);
    • B、 String name= (new File(“file.txt”)).getParent();
    • C、 String name = (new File(“file.txt”)).getParentName();
    • D、 String name= (new File(“file.txt”)).getParentFile();
    • E、 Directory dir=(new File (“file.txt”)).getParentDir();  String name= dir.getName();

    正确答案:B

  • 第20题:

    单选题
    下面关于工具栏的叙述,不正确的是()。
    A

    用户可以创建自己的工具栏

    B

    用户可以修改系统工具栏

    C

    用户可以删除用户创建的工具栏

    D

    用户可以删除系统工具栏


    正确答案: D
    解析: 暂无解析

  • 第21题:

    多选题
    Which two create an InputStream and open file the “file.txt” for reading? ()
    A

    InputStream in=new FileReader(“file.txt”);

    B

    InputStream in=new FileInputStream(“file.txt”);

    C

    InputStream in=new InputStreamFileReader (“file.txt”, “read”);

    D

    FileInputStream in=new FileReader(new File(“file.txt”));

    E

    FileInputStream in=new FileInputStream(new File(“file.txt”));


    正确答案: D,C
    解析: 暂无解析

  • 第22题:

    单选题
    下列关于VisualFoxPro工具栏的叙述中,错误的是()。
    A

    工具栏可以显示或隐藏

    B

    可以修改和删除系统提供的工具栏

    C

    用户可以创建自己的工具栏

    D

    可以删除用户创建的工具栏


    正确答案: D
    解析: 暂无解析

  • 第23题:

    单选题
    Given that the current directory is empty, and that the user has read and write privileges to the current directory, and the following: Which statement is true?()
    A

    Compilation fails.

    B

    Nothing is added to the file system.

    C

    Only a new file is created on the file system.

    D

    Only a new directory is created on the file system.

    E

    Both a new file and a new directory are created on the file system.


    正确答案: A
    解析: 暂无解析