FileInputStream 小Demo

要求:设计如下界面
  文本框里面可以输入的路径和文件名
  单机按钮可以读取在 指定的文件
  并把文件内容显示到一个文本域里面来

 

代码:

/**
 * 
 */
package com.niit.homework;

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JScrollPane;
import javax.swing.JTextArea;
import javax.swing.JTextField;

/**
 * @author: Annie
 * @date:2016年6月16日
 * @description:2设计如下界面
                                                文本框里面可以输入的路径和文件名
                                                单机按钮可以读取在 指定的文件
                                               并把文件内容显示到一个文本域里面来
 */
public class IoDemo extends JFrame implements ActionListener{

    JTextField jt_path;
    JTextArea ja;
    JLabel lab_adrr;
    JButton button;


    public IoDemo() {
        super("读取文件");
        setLayout(new FlowLayout());
        setSize(380,380);
        jt_path = new JTextField(15);
        ja = new JTextArea(15,25);
        button = new JButton("确定");

        button.addActionListener(this);

        add(new JLabel("请输入文件地址"));
        add(jt_path);
        add(button);
        add(new JScrollPane(ja));
        setVisible(true);
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    }
    public static void main(String[] args) {
        IoDemo ioDemo = new IoDemo();

    }

    @Override
    public void actionPerformed(ActionEvent e) {
        int data;
        String path = jt_path.getText().trim();//读取到文件名
        System.out.println(path);
        //读取文件内容
        FileInputStream fis = null;
        try {
            fis = new FileInputStream(path);
            byte [] a = new byte[1024];
            while((data =fis.read(a,0,1024))!=-1){
                
               String str = new String(a,0,data);
               ja.append(str);
            }
        } catch ( IOException e1) {}
        finally{
            try {
                fis.close();
            } catch (IOException e1) {
            }
        }
        
    }

}

 

注意: E:\\files\\niit.txt 要在你的E盘里先创建files包和niit.txt文件。并在.txt文件里写上文字。

效果图:

转载于:https://www.cnblogs.com/wangmingxia/p/5591001.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值