问答题

下面程序的功能是从键盘读取一行文本并将该文本存储到文件中。当用户运行该程序时,需要输入一行文本并按下回车键。然后在DOS系统提示符输入type file.txt并按下ENTER键,这时屏幕会显示typefile.txt的内容:通过这个命令可以验证该程序的功能。请在每条横线处填写一条语句,使程序的功能完整。 注意:请勿改动main()主方法和其他已有的语句内容,仅在横线处填入适当的语句。 import java.io.*; public class DoFile { public static void main(String args[]) { byte buffername[]=_________________________[100]; try { System.out.println("\nEnter a line to be saved to disk:"); int bytesblock=______________ FileOutputStream f=new FileOutputStream ("file. txt"); //在考试时,可在考生目录下创建文件 _________________________ } catch(Exception e) { e.printStackTrace ( ); } } }

【参考答案】

new byte System.in.read(buffername); f.write(buffername,0,by......

(↓↓↓ 点击下方‘点击查看答案’看完整答案 ↓↓↓)
热门 试题

问答题
请完成下列Java程序:用一个边框布局来安排一个工具栏和一个卡片布局。工具栏可浮动,包括2个按钮,一个向前一个向后控制卡片的显示;卡片布局包括3张卡片,分别标识为card1,card2,card3。注意;请勿改动main()主方法和其他已有语句内容,仅在下划线处填入适当的语句。程序运行结果如下:import java.awt.*;import java.awt.event.*;import javax.swing.*;import javax.swing.border. LineBorder;public class ex24_2{private static CardLayout cl=new CardLayout();private static JPanel cp=new JPanel();public static void main(String[] args){JFrame if=new JFrame();jf.setTitle( ex24_2 );Container c=jf.getContentPane();JToolBar jtb=new JToolBar();JButton btnNext=new JButton(new ImageIcon( next.gif ));JButton btnPre=new JButton(new ImageIcon( back.gif ));jtb.add(btnPre);jtb.add(btnNext);cp.setLayout(cl);Dimension dim=new Dimension(150,80);cp.setPreferredSize(dim);cp.setBorder(new LineBorder(Color. BLACK));cp.add(new JLabel( cardl ,JLabel.CENTER), card1 );cp.add(new JLabel( card2 ,JLabel.CENTER), card2 );cp.add(new JLabel( card3 ,JLabel.CENTER), card3 );c.add(jtb,BorderLayout.NORTH);c.add(cp,BorderLayout.CENTER);ActionListener al=new ActionResponse();____________________________________;____________________________________;jf.addWindowListener(new WindowAdapter(){public void windowClosing(WindowEvent we){System.exit(0);}});jf.pack();jf.setVisible(true);} static class ActionResponse implements ActionListener{public void actionPerformed(ActionEvent ae){if(ae.getActionCommand().equals( next ))cl.next(cp);elsecl.previous(cp);}}}