摘要:
1 public class DesktopKnow 2 { 3 public void know() 4 { 5 try 6 { 7 Desktop.getDesktop().open(new File("C:\\Program Files")); 8 } catch (IOException e1) 9 {10 JOptionPane.showMessageDialog(null, "抱歉,您的电脑中还没有安装打开该文件的程序!", "打开文件 - 提示", J... 阅读全文
摘要:
1 public class FileKnow 2 { 3 public static void main(String[] args) 4 { 5 //构建file对象 ,参数表示文件所在的路径 6 File file = new File("d:\\niit.log"); 7 8 //判断文件是否存在 9 System.out.println(file.exists()); 10 //判断文件是否是单个的文件 11 System.out.pr... 阅读全文
摘要:
1 public class IOStreamKnow 2 { 3 /*********************************文件读写方式:字节流************************************/ 4 /** 5 * 方式一:基本方式,文件读写方式的基础 6 */ 7 public void name() 8 { 9 try 10 { 11 //创建输入流,输入流用来读取文件字节信息 12 //参数表示读取的文... 阅读全文
摘要:
1 public class ThreadKnow 2 { 3 private TimeThread timeThread; 4 private boolean flag; 5 6 public ThreadKnow() 7 { 8 /*************************创建线程************************/ 9 //自定义线程构建方式一 继承Thread类 10 // public class MyThreadExam1 extends Threa... 阅读全文
摘要:
一:项目二:重要组件补充三:组件高级操作 阅读全文
摘要:
1 public class JTreeKnow extends JFrame 2 { 3 public JTreeKnow() 4 { 5 this.setBounds(300, 100, 400, 500); 6 this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 7 8 //创建树的第一种方式 9 JTree jTree = new JTree(); 10 this.add(jTree); 11 ... 阅读全文
摘要:
1 public class JInternalFrameKnow extends JInternalFrame 2 { 3 public JInternalFrameKnow() 4 { 5 this.setBounds(200, 200, 300, 300); 6 this.setTitle("子窗体 "); 7 this.setDefaultCloseOperation(JFrame.DISPOS... 阅读全文
摘要:
1 public class JFileChooserKnow 2 { 3 4 /** 5 * @param args 6 */ 7 public static void main(String[] args) 8 { 9 // TODO Auto-generated method stub10 //文件选择器11 JFileChooser chooser = new JFileChooser();12 //设置文件过滤器13 chooser.setFileFilte... 阅读全文
摘要:
1 /** 2 * JTable高级应用 3 * @author Wfei 4 * 5 */ 6 public class JTableKnow_C extends JFrame 7 { 8 JTable jTable; 9 MyJMenuItem jMenuItem; 10 MyJMenuItem jMenuItem2; 11 JPopupMenu jPopupMenu; 12 JMenu jMenu; 13 public JTableKnow_C() 14 { 15 this.setBoun... 阅读全文
摘要:
1 public class JTableKnow_A extends JFrame 2 { 3 public JTableKnow_A() 4 { 5 this.setBounds(300, 100, 400, 300); 6 this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 7 8 /****************************************************/ 9 //实例化表格的第一种方... 阅读全文