java Swing和JFrame,UI多线程文件复制

Java擅长开发服务器端的程序

GUI-->Graph User Interface
图形用户接口,用图形的方式,来显示计算机操作的界面,
这样更方便更直观。

CLI-->Command line user Interface
命令行用户接口,就是常见的Dos命令操作,需要记忆一些
常用的命令,操作不直观。

用java Swing 和 JFrame写的界面记事本程序,十分简单,有打开文件,保存文件,退出程序的功能,事件的绑定是通过监听器实现的


1.png

当文件内容过多时,会自动出现滚动条


2.png

下面就是整个实现代码了
package day17;

import java.awt.FileDialog;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;
import java.io.File;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JMenu;
import javax.swing.JMenuBar;
import javax.swing.JMenuItem;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;

public class MainFrame extends JFrame implements ActionListener{
    public static void main(String[] args) {
        MainFrame frame = new MainFrame();
    }
    
    private JTextArea textArea;
    private JButton buttonSaveOther;
    private JButton buttonCancel;
    private JButton buttonSure;
    private File nowFile;
    private JMenuItem fileItem;

    public MainFrame() {
        initFrame();
        this.setVisible(true);
    }

    //界面布局
    public void initFrame() {
        //创建窗口
        this.setTitle("My title");
        //设置窗口大小,位置,左上角是原点
        this.setBounds(270, 80, 810, 640);
        
        //设置JFrame的布局为null
        this.setLayout(null);
        
        Font font = new Font("宋体", Font.BOLD, 27);
        
        textArea = new JTextArea();
        textArea.setFont(font);
        
        //滚动面板
        JScrollPane pane = new JScrollPane(textArea);
        pane.setBounds(30, 30, 750, 400);
        
        this.add(pane);
        
        buttonSaveOther = new JButton("另存为");
        //设置按钮的位置(相对于所在容器的),大小
        buttonSaveOther.setBounds(75, 500, 120, 50);
        buttonSaveOther.addActionListener(this);
        this.add(buttonSaveOther);
        
        buttonSure = new JButton("保存");
        buttonSure.setBounds(345, 500, 120, 50);
        buttonSure.addActionListener(this);
        this.add(buttonSure);
        
        buttonCancel = new JButton("退出");
        buttonCancel.setBounds(615, 500, 120, 50);
        buttonCancel.addActionListener(this);
        this.add(buttonCancel);
        
        //添加窗口事件处理程序,使用适配器
        this.addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                System.out.println("关闭窗口");
                System.exit(-1);
            }
        });
        
        //添加菜单栏
        JMenuBar menuBar = new JMenuBar();
        //添加菜单
        JMenu menu = new JMenu("文件");
        
        //添加菜单项
        fileItem = new JMenuItem("打开");
        fileItem.addActionListener(this);
        menu.add(fileItem);
        menu.addSeparator();
        
        menuBar.add(menu);
        this.setJMenuBar(menuBar);
    }

    //绑定监听事件
    @Override
    public void actionPerformed(ActionEvent e) {
        Object event = e.getSource();
        FileWriter writer = null;
        FileReader reader = null;
        if(buttonSaveOther == event) {
            try {
                System.out.println("另存为按钮");
                FileDialog dialog = new FileDialog(this, "保存位置", FileDialog.SAVE);
                dialog.setVisible(true);
                nowFile = new File(dialog.getDirectory(), dialog.getFile());
                System.out.println(dialog.getFile());
                System.out.println(dialog.getDirectory());
                writer = new FileWriter(nowFile);
                writer.write(textArea.getText());
                
            } catch (IOException e1) {
                e1.printStackTrace();
            } finally {
                if(writer != null) {
                    try {
                        writer.close();
                    } catch (IOException e1) {
                        e1.printStackTrace();
                    }
                }
                System.out.println("关闭文件流");
            }
        }else if(buttonSure == event) {
            System.out.println("保存按钮");
            
            try {
                writer = new FileWriter(nowFile);
                writer.write(textArea.getText());
            } catch (IOException e1) {
                e1.printStackTrace();
            } finally {
                if(writer != null) {
                    try {
                        writer.close();
                    } catch (IOException e1) {
                        e1.printStackTrace();
                    }
                }
                System.out.println("关闭文件流");
            }
            
        }else if(buttonCancel == event) {
            System.out.println("退出按钮");
            this.dispose();
        }else if(fileItem == event) {
            System.out.println("打开文件按钮");
            try {
                FileDialog dialog = new FileDialog(this, "打开位置", FileDialog.LOAD);
                dialog.setVisible(true);
                nowFile = new File(dialog.getDirectory(), dialog.getFile());
                System.out.println(dialog.getFile());
                System.out.println(dialog.getDirectory());
                reader = new FileReader(nowFile);
                char[] c = new char[1024];
                int len = -1;
                String str = "";
                while((len = reader.read(c)) != -1) {
                    str = str + new String(c, 0, len);
                }
                textArea.setText(str);
            } catch (IOException e1) {
                e1.printStackTrace();
            } finally {
                if(reader != null) {
                    try {
                        reader.close();
                    } catch (IOException e1) {
                        e1.printStackTrace();
                    }
                }
                System.out.println("关闭文件流");
            }
        }
    }
}

一个多线程文件复制器


3.png
4.png

实现代码
下面这个就是整个UI界面的代码,对各个控件的排版和事件监听

package mulcopier;

import java.awt.FileDialog;
import java.awt.Font;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.WindowAdapter;
import java.awt.event.WindowEvent;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JProgressBar;
import javax.swing.JTextField;

public class CopyUI extends JFrame implements ActionListener{
    private static final long serialVersionUID = 5521199214537722822L;
    private JTextField textSrc;
    private JTextField textAim;
    private JTextField textNumberThread;
    private JButton buttonStart;
    private JButton buttonSrc;
    private JButton buttonAim;
    public JProgressBar bar;

    public static void main(String[] args) {
        CopyUI copyui = new CopyUI();
    }
    
    public CopyUI() {
        init();
    }
    
    private void init() {
        this.setTitle("多文件复制");
        this.setBounds(270, 80, 800, 600);
        this.setLayout(null);
        
        Font fontText = new Font("宋体", Font.ITALIC, 20);  --字体类
        Font fontLab = new Font("宋体", Font.BOLD, 27);


        JLabel labSrcPath = new JLabel("源文件");  --面板中label文字
        labSrcPath.setFont(fontLab);
        labSrcPath.setBounds(30, 30, 100, 60);
        
        textSrc = new JTextField();  --所对应的输入框
        textSrc.setFont(fontText);
        textSrc.setBounds(150, 30, 400, 60);

        buttonSrc = new JButton("打开源文件路径");
        buttonSrc.setBounds(580, 40, 150, 40);
        buttonSrc.addActionListener(this);  --类本身实现了ActionListener接口,在对应方法中区分事件
        
        this.add(labSrcPath);  --添加至面板中
        this.add(textSrc);
        this.add(buttonSrc);
        
        
        JLabel labAimPath = new JLabel("目标路径");  --跟上方类似
        labAimPath.setFont(fontLab);
        labAimPath.setBounds(20, 130, 150, 60);
        
        textAim = new JTextField();
        textAim.setFont(fontText);
        textAim.setBounds(150, 130, 400, 60);
        
        buttonAim = new JButton("打开目标文件路径");
        buttonAim.setBounds(580, 140, 150, 40);
        buttonAim.addActionListener(this);
        
        this.add(labAimPath);
        this.add(textAim);
        this.add(buttonAim);
        
        
        JLabel labNumberThread = new JLabel("线程数量");
        labNumberThread.setFont(fontLab);
        labNumberThread.setBounds(20, 230, 150, 60);
        
        textNumberThread = new JTextField();
        textNumberThread.setBounds(150, 230, 400, 60);
        
        buttonStart = new JButton("开始");
        buttonStart.setBounds(100, 350, 100, 40);
        buttonStart.addActionListener(this);

        this.add(labNumberThread);
        this.add(textNumberThread);
        this.add(buttonStart);
        

        //添加窗口事件处理程序,使用适配器,监听窗口关闭事件,使得关闭的同时结束程序
        //点击右上角的关闭按钮默认不会结束程序
        this.addWindowListener(new WindowAdapter() {
            @Override
            public void windowClosing(WindowEvent e) {
                System.out.println("关闭窗口");
                System.exit(-1);
            }
        });
        
        bar = new JProgressBar();  --进度条
        bar.setBounds(50, 420, 700, 50);
        this.add(bar);
        
        this.setVisible(true);  -- 设置面板可见
    }

    @Override
    public void actionPerformed(ActionEvent e) { --区分并处理事件
        if(e.getSource() == buttonStart) {
            System.out.println("点击开始按钮");
            String srcPath = textSrc.getText();
            String aimPath = textAim.getText();
            int count = Integer.parseInt(textNumberThread.getText());
            System.out.println("源文件路径:" + srcPath + ", 目标文件路径:" + aimPath + ", 线程数:" + count);
            
            Copier copier = new Copier(this, srcPath, aimPath, count);
            copier.startCopy();  --这个类在下面可以看到
            
        }else if(e.getSource() == buttonSrc){
 --点击打开源文件路径按钮会弹出一个查找文件对话框,选择对应的文件后,所选的文件路径会出现在对应的输入框中
            System.out.println("打开源文件路径");
            FileDialog dialog = new FileDialog(this, "源文件路径", FileDialog.LOAD);
            dialog.setVisible(true);
            String srcPath = dialog.getDirectory() + dialog.getFile();
            if(srcPath == "nullnull") {
                textSrc.setText("");
            }else {
                textSrc.setText(srcPath);               
            }
            System.out.println(srcPath);
        }else if(e.getSource() == buttonAim){
            System.out.println("打开目标文件路径");
            FileDialog dialog = new FileDialog(this, "目标文件路径", FileDialog.LOAD);
            dialog.setVisible(true);
            String aimPath = dialog.getDirectory() + dialog.getFile();
            if(aimPath == "nullnull") {
                textAim.setText("");
            }else {
                textAim.setText(aimPath);               
            }
            System.out.println(aimPath);
        }
    }
}
package mulcopier;

import java.io.File;
import java.io.RandomAccessFile;
import javax.swing.JProgressBar;

 * 复制器
public class Copier {
    private CopyUI copyui;
    private String srcPath;
    private String aimPath;
    private int count;
    
    public Copier(CopyUI copyui, String srcPath, String aimPath, int count) {
        this.copyui = copyui;
        this.srcPath = srcPath;
        this.aimPath = aimPath;
        this.count = count;
    }
    
    public void startCopy() {
        File file = new File(srcPath);
        int fileSize = (int) file.length();
        System.out.println("文件大小" + fileSize);
        
        copyui.bar.setMaximum(fileSize);
        
        int average = fileSize/count;
        int size = 0;
        
        for(int i=0; i<count; i++) {
            if(i == count-1) {
                size = fileSize-i*average;
            }else {
                size = average;
            }
            
            //动态添加bar
            JProgressBar bar = new JProgressBar();
            bar.setBounds(50, 480+i*30, 700, 20);
            copyui.add(bar);
            MyThread t = new MyThread(copyui, bar, srcPath, aimPath, average*i, size);
            
            t.start();
        }
        System.out.println("所有线程分配结束");
    }
}

 * 复制文件的线程
class MyThread extends Thread {
    private CopyUI copyui;     // 所有线程的总进度条
    private JProgressBar bar;  // 线程各自对应的进度条
    private String srcPath;
    private String aimPath;
    private int start; // 开始写入位置
    private int size;  // 负责写入的量
    
    public MyThread(CopyUI copyui,JProgressBar bar, String srcPath, String aimPath, int start, int size) {
        this.copyui = copyui;
        this.bar = bar;
        this.srcPath = srcPath;
        this.aimPath = aimPath;
        this.start = start;
        this.size = size;
    }
    
    public void run() {
        System.out.println(Thread.currentThread().getName() + "开始位置:" + start + ",写入量:" + size);
        RandomAccessFile rafSrc = null;
        RandomAccessFile rafAim = null;
        try {
            rafSrc = new RandomAccessFile(srcPath, "r");
            rafAim = new RandomAccessFile(aimPath, "rw");
            
            rafSrc.seek(start);
            rafAim.seek(start);
            
            int len = -1;
            byte[] buffer = new byte[1024];
            int number = size;
            bar.setMaximum(size);
            while((len = rafSrc.read(buffer)) != -1) {
                rafAim.write(buffer, 0, len);
                number = number - 1024;
                
                bar.setValue(bar.getValue()+1024);  // 设置线程自己的进度条
                
                synchronized (copyui) {     // 设置所有线程共用的进度条
                    int value = copyui.bar.getValue();
                    copyui.bar.setValue(value + 1024);
                }
                
                if(number < 1024 && number > 0) {
                    len = rafSrc.read(buffer);
                    rafAim.write(buffer, 0, number);
                    
                    bar.setValue(bar.getValue()+number);
                    
                    synchronized (copyui) {
                        int value = copyui.bar.getValue();
                        copyui.bar.setValue(value + number);
                    }
                    System.out.println(Thread.currentThread().getName() + "开始位置:" + start + ",写入" + size + "完毕");
                    break;
                }
//              System.out.println("number = " + number + ", size = " + size);
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                if(rafSrc != null) {
                    rafSrc.close();
                }
                if(rafAim != null) {
                    rafAim.close();
                }
            } catch(Exception e) {
                e.printStackTrace();
            }
            System.out.println("已关闭文件流");
        }
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,992评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,212评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,535评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,197评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,310评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,383评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,409评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,191评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,621评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,910评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,084评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,763评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,403评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,083评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,318评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,946评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,967评论 2 351

推荐阅读更多精彩内容

  • java是面向过程的编程语言:Java是一种可以撰写跨平台应用软件的面向对象的程序设计语言。Java 技术具有卓越...
    Java小辰阅读 3,047评论 0 17
  • 1.import static是Java 5增加的功能,就是将Import类中的静态方法,可以作为本类的静态方法来...
    XLsn0w阅读 1,219评论 0 2
  • 一根烟燃尽了春天 我停在火光尽头 随落叶凋零 阁楼里的影子 被陈旧的烟圈锁住 缄默的故事 囚入云中 等待着归家的夜...
    书翊阅读 114评论 0 5
  • 不知怎么办,心里很慌乱, 就像着了魔一般,就想让你来陪伴, 可我知道,不管你是否你天边,对于我的召唤, 即使看见也...
    懂我笑容任阅读 299评论 6 3