首页 > 其他 > 详细

17.4

时间:2016-08-09 00:07:22      阅读:249      评论:0      收藏:0      [点我收藏+]

技术分享

技术分享
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;

import javax.swing.*;

public class Test_17_4 extends JFrame{
    private JLabel jl1 = new JLabel("Filename");
    private JTextField jt1 = new JTextField("d:\\a.txt",10);    
    private JButton jb1 = new JButton("View");
    private JPanel jholdPanel = new JPanel();
    private JP jp1 = new JP();
    private String s;
    
    public Test_17_4(){        
        add(jp1);
    }
    
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Test_17_4 frame = new Test_17_4();
        frame.setTitle("Test_17_4");
        frame.setSize(400,500);
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }
    
    class JP extends JPanel{
        private JTextArea jt = new JTextArea();        
        private File file;
        private Scanner input;
        
        public JP(){
            //set textarea                    
            jt.setLineWrap(true);
            jt.setWrapStyleWord(false);
            jt.setEditable(false);
            
            JScrollPane scro = new JScrollPane(jt);        
            
            //create jscrollpanel to hole the textarea
            JScrollPane scrollPane = new JScrollPane(jt);            
            
            jholdPanel.setLayout(new FlowLayout(FlowLayout.LEFT));
            jholdPanel.add(jl1);
            jholdPanel.add(jt1);
            jholdPanel.add(jb1);
            
            jb1.addActionListener(new ActionListener(){

                @Override
                public void actionPerformed(ActionEvent arg0) {
                    // TODO Auto-generated method stub
                    s = jt1.getText();
                    try {
                        jp1.setText(s);
                    } catch (FileNotFoundException e) {
                        // TODO Auto-generated catch block
                        e.printStackTrace();
                    }
                }
                
            });
            
            setLayout(new BorderLayout(5,5));
            add(scrollPane,BorderLayout.CENTER);
            add(jholdPanel,BorderLayout.SOUTH);
        }
        
        public void setText(String s) throws FileNotFoundException{
            file = new File(s);
            if(file.canRead() && file.exists()) {
                input = new Scanner(file);
                while(input.hasNext()) {
                    jt.append(input.nextLine());
                    jt.append("\n");
                }
            }
            else System.out.println("does not exists!");
            input.close();
        }
    }

}
View Code

效果图:

技术分享

 

17.4

原文:http://www.cnblogs.com/wanjiang/p/5751334.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!