filewriter与filereader类实例15.04

2024-04-30 04:18

本文主要是介绍filewriter与filereader类实例15.04,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

import java.awt.*;
import java.awt.event.*;
import java.io.*;import javax.swing.*;public class Ftest extends JFrame { // 创建类,继承Jframe类private JScrollPane scrollPane;private static final long serialVersionUID = 1L;private JPanel jContentPane = null; // 创建面板对象private JTextArea jTextArea = null; // 创建文本域对象private JPanel controlPanel = null; // 创建面板对象private JButton openButton = null; // 创建按钮对象private JButton closeButton = null; // 创建按钮对象private JTextArea getJTextArea() {if (jTextArea == null) {jTextArea = new JTextArea();}return jTextArea;}private JPanel getControlPanel() {if (controlPanel == null) {FlowLayout flowLayout = new FlowLayout();flowLayout.setVgap(1);controlPanel = new JPanel();controlPanel.setLayout(flowLayout);controlPanel.add(getOpenButton(), null);controlPanel.add(getCloseButton(), null);}return controlPanel;}private JButton getOpenButton() {if (openButton == null) {openButton = new JButton();openButton.setText("写入文件"); // 修改按钮的提示信息openButton.addActionListener(new java.awt.event.ActionListener() {// 按钮的单击事件public void actionPerformed(ActionEvent e) {// 创建文件对象File file = new File("word.txt");try {// 创建FileWriter对象FileWriter out = new FileWriter(file);// 获取文本域中文本String s = jTextArea.getText();out.write(s); // 将信息写入磁盘文件out.close(); // 将流关闭} catch (Exception e1) {e1.printStackTrace();}}});}return openButton;}private JButton getCloseButton() {if (closeButton == null) {closeButton = new JButton();closeButton.setText("读取文件"); // 修改按钮的提示信息closeButton.addActionListener(new java.awt.event.ActionListener() {// 按钮的单击事件public void actionPerformed(ActionEvent e) {File file = new File("word.txt"); // 创建文件对象try {// 创建FileReader对象FileReader in = new FileReader(file);char byt[] = new char[1024]; // 创建char型数组int len = in.read(byt); // 将字节读入数组// 设置文本域的显示信息jTextArea.setText(new String(byt, 0, len));in.close(); // 关闭流} catch (Exception e1) {e1.printStackTrace();}}});}return closeButton;}public Ftest() {super();initialize();}private void initialize() {this.setSize(300, 200);this.setContentPane(getJContentPane());this.setTitle("JFrame");}private JPanel getJContentPane() {if (jContentPane == null) {jContentPane = new JPanel();jContentPane.setLayout(new BorderLayout());jContentPane.add(getScrollPane(), BorderLayout.CENTER);jContentPane.add(getControlPanel(), BorderLayout.SOUTH);}return jContentPane;}public static void main(String[] args) { // 主方法Ftest thisClass = new Ftest(); // 创建本类对象thisClass.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);thisClass.setVisible(true); // 设置该窗体为显示状态}/*** @return*/protected JScrollPane getScrollPane() {if (scrollPane == null) {scrollPane = new JScrollPane();scrollPane.setViewportView(getJTextArea());}return scrollPane;}
}

这篇关于filewriter与filereader类实例15.04的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/947883

相关文章

java图像识别工具类(ImageRecognitionUtils)使用实例详解

《java图像识别工具类(ImageRecognitionUtils)使用实例详解》:本文主要介绍如何在Java中使用OpenCV进行图像识别,包括图像加载、预处理、分类、人脸检测和特征提取等步骤... 目录前言1. 图像识别的背景与作用2. 设计目标3. 项目依赖4. 设计与实现 ImageRecogni

Java操作ElasticSearch的实例详解

《Java操作ElasticSearch的实例详解》Elasticsearch是一个分布式的搜索和分析引擎,广泛用于全文搜索、日志分析等场景,本文将介绍如何在Java应用中使用Elastics... 目录简介环境准备1. 安装 Elasticsearch2. 添加依赖连接 Elasticsearch1. 创

使用C#代码计算数学表达式实例

《使用C#代码计算数学表达式实例》这段文字主要讲述了如何使用C#语言来计算数学表达式,该程序通过使用Dictionary保存变量,定义了运算符优先级,并实现了EvaluateExpression方法来... 目录C#代码计算数学表达式该方法很长,因此我将分段描述下面的代码片段显示了下一步以下代码显示该方法如

Oracle Expdp按条件导出指定表数据的方法实例

《OracleExpdp按条件导出指定表数据的方法实例》:本文主要介绍Oracle的expdp数据泵方式导出特定机构和时间范围的数据,并通过parfile文件进行条件限制和配置,文中通过代码介绍... 目录1.场景描述 2.方案分析3.实验验证 3.1 parfile文件3.2 expdp命令导出4.总结

MySQL的索引失效的原因实例及解决方案

《MySQL的索引失效的原因实例及解决方案》这篇文章主要讨论了MySQL索引失效的常见原因及其解决方案,它涵盖了数据类型不匹配、隐式转换、函数或表达式、范围查询、LIKE查询、OR条件、全表扫描、索引... 目录1. 数据类型不匹配2. 隐式转换3. 函数或表达式4. 范围查询之后的列5. like 查询6

Python开发围棋游戏的实例代码(实现全部功能)

《Python开发围棋游戏的实例代码(实现全部功能)》围棋是一种古老而复杂的策略棋类游戏,起源于中国,已有超过2500年的历史,本文介绍了如何用Python开发一个简单的围棋游戏,实例代码涵盖了游戏的... 目录1. 围棋游戏概述1.1 游戏规则1.2 游戏设计思路2. 环境准备3. 创建棋盘3.1 棋盘类

【机器学习】高斯过程的基本概念和应用领域以及在python中的实例

引言 高斯过程(Gaussian Process,简称GP)是一种概率模型,用于描述一组随机变量的联合概率分布,其中任何一个有限维度的子集都具有高斯分布 文章目录 引言一、高斯过程1.1 基本定义1.1.1 随机过程1.1.2 高斯分布 1.2 高斯过程的特性1.2.1 联合高斯性1.2.2 均值函数1.2.3 协方差函数(或核函数) 1.3 核函数1.4 高斯过程回归(Gauss

C++操作符重载实例(独立函数)

C++操作符重载实例,我们把坐标值CVector的加法进行重载,计算c3=c1+c2时,也就是计算x3=x1+x2,y3=y1+y2,今天我们以独立函数的方式重载操作符+(加号),以下是C++代码: c1802.cpp源代码: D:\YcjWork\CppTour>vim c1802.cpp #include <iostream>using namespace std;/*** 以独立函数

实例:如何统计当前主机的连接状态和连接数

统计当前主机的连接状态和连接数 在 Linux 中,可使用 ss 命令来查看主机的网络连接状态。以下是统计当前主机连接状态和连接主机数量的具体操作。 1. 统计当前主机的连接状态 使用 ss 命令结合 grep、cut、sort 和 uniq 命令来统计当前主机的 TCP 连接状态。 ss -nta | grep -v '^State' | cut -d " " -f 1 | sort |

Java Websocket实例【服务端与客户端实现全双工通讯】

Java Websocket实例【服务端与客户端实现全双工通讯】 现很多网站为了实现即时通讯,所用的技术都是轮询(polling)。轮询是在特定的的时间间隔(如每1秒),由浏览器对服务器发 出HTTP request,然后由服务器返回最新的数据给客服端的浏览器。这种传统的HTTP request 的模式带来很明显的缺点 – 浏 览器需要不断的向服务器发出请求,然而HTTP