目录 1.File类 2.FilenameFilter接口 3.输入输出流 4.使用Scanner解析文件 参考资料 <Java 2实用教程>第10章 输入.输出流 1.File类 常用方法: public String getName() 获取文件的名字 public boolean canRead() 判断文件是否是可读的 public boolean canWrite() 判断文件是否可被写入 public boolean exists() 判断文件是否存在 public long le…
第三十一章 Windows窗体 创建Windows窗体应用程序 在文本编辑器中输入: /* * form.cs * a simple windows form * */ using System; using System.Windows.Forms; namespace NotepadForms { public class MyForm:System.Windows.Forms.Form { public MyForm() { } [STAThread] static void Ma…