JBuilderw 中的界面怎么做呀?
public class FileInputStreamTest {
  public static void main(String[] args) {
    //建立一个文件输入流
    try {
      FileInputStream fis = new FileInputStream("e:/readme.txt");
  
      byte[] content=new byte[fis.available()];
      fis.read(content);
      System.out.println(new String(content));
    }
    catch (FileNotFoundException ex) {
      ex.printStackTrace();
    }
    catch (IOException ex) {
      ex.printStackTrace();
    }
  }
}