Sau khi tạo một frame bằng câu lệnh Frame f = new Frame() và tạo menu bar bằng câu lệnh MenuBar mb = new MenuBar(), làm thế nào để gắn MenuBar tên mb vào f
Cho biết số byte mà đoạn chương trình sau ghi ra tập tin temp. txt import java.io. * ; public class TestIOApp { public static void main(String args[]) throws IOException { FileOutputStream outStream = new FileOutputStream("temp.txt"); String s = "test"; for (int i = 0; i outStream.write(s.charAt(i)); outStream.close(); } }