Java如何读取文本区中的内容并写入文件里?

Java如何读取文本区中的内容?然后按照文本区中的格式来写入到文本文件里,我想要的效果是那种文本区里什么格式,在文本里就什么格式的模式,请会的大大上代码,谢谢哈!... Java如何读取文本区中的内容?然后按照文本区中的格式来写入到文本文件里,我想要的效果是那种文本区里什么格式,在文本里就什么格式的模式,请会的大大上代码,谢谢哈! 展开
 我来答
随性亻
推荐于2017-10-06 · TA获得超过4180个赞
知道小有建树答主
回答量:4622
采纳率:84%
帮助的人:621万
展开全部
import javax.swing.*;
import java.io.*;
public class GUIRWFile extends JFrame implements ActionListener {
JTextArea txtMessage;
JButton btnRead, btnWrite;
public GUIRWFile() {
super("文本读写");
txtMessage = new JTextArea(15, 30);
btnRead = new JButton("读取");
btnWrite = new JButton("写入");
this.setLayout(new FlowLayout());
this.add(new JLabel("文件内容:"));
this.add(txtMessage);
this.add(btnRead);
this.add(btnWrite);
btnRead.addActionListener(this);
btnWrite.addActionListener(this);
this.setSize(400, 400);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
}
public static void main(String[] args) {
new GUIRWFile();
}
@Override
public void actionPerformed(ActionEvent e) {
JButton btn = (JButton)e.getSource();
String fileName = "D:\\test.txt";
if(btn.getText().equals("读取")){
try{
InputStream is = new FileInputStream(fileName);
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line = null;
StringBuffer buffer = new StringBuffer();
while((line = br.readLine()) != null){
buffer.append(line + "\n");
}
txtMessage.setText(buffer.toString());
br.close();
is.close();
}
catch(Exception ex){
JOptionPane.showMessageDialog(this, "系统I/O错误!");
}
}
else if(btn.getText().equals("写入")){
try{
String msg = txtMessage.getText();
OutputStream os = new FileOutputStream(fileName);
PrintStream ps = new PrintStream(os);
ps.print(msg);
ps.close();
os.close();
}
catch(Exception ex){
JOptionPane.showMessageDialog(this, "系统I/O错误!");
}
}
}
}
逝水无痕1231
推荐于2017-10-02
知道答主
回答量:38
采纳率:0%
帮助的人:7.4万
展开全部
import javax.swing.*;
import java.io.*;
public class GUIRWFile extends JFrame implements ActionListener {
JTextArea txtMessage;
JButton btnRead, btnWrite;
public GUIRWFile() {
super("文本读写");
txtMessage = new JTextArea(15, 30);
btnRead = new JButton("读取");
btnWrite = new JButton("写入");
this.setLayout(new FlowLayout());
this.add(new JLabel("文件内容:"));
this.add(txtMessage);
this.add(btnRead);
this.add(btnWrite);
btnRead.addActionListener(this);
btnWrite.addActionListener(this);
this.setSize(400, 400);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
}
public static void main(String[] args) {
new GUIRWFile();
}
@Override
public void actionPerformed(ActionEvent e) {
JButton btn = (JButton)e.getSource();
String fileName = "D:\\test.txt";
if(btn.getText().equals("读取")){
try{
InputStream is = new FileInputStream(fileName);
BufferedReader br = new BufferedReader(new InputStreamReader(is));
String line = null;
StringBuffer buffer = new StringBuffer();
while((line = br.readLine()) != null){
buffer.append(line + "\n");
}
txtMessage.setText(buffer.toString());
br.close();
is.close();
}
catch(Exception ex){
JOptionPane.showMessageDialog(this, "系统I/O错误!");
}
}
else if(btn.getText().equals("写入")){
try{
String msg = txtMessage.getText();
OutputStream os = new FileOutputStream(fileName);
PrintStream ps = new PrintStream(os);
ps.print(msg);
ps.close();
os.close();
}
catch(Exception ex){
JOptionPane.showMessageDialog(this, "系统I/O错误!");
}
}
}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
不正经的薯条
2013-12-19 · 超过11用户采纳过TA的回答
知道答主
回答量:30
采纳率:0%
帮助的人:12.9万
展开全部
package com.kd.zt.action.qek;

import java.io.File;
import java.io.FileInputStream;
import java.io.InputStream;
import java.net.URLEncoder;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;

/**
* @作者 QiErKang
* @创建日期 2013-10-30 下午08:36:41
* @项目名 crec
* @包名 com.kd.zt.action.qek
* @类名 DownloadAction.java
* @版本 V 1.0
*/
public class DownloadAction extends ActionSupport {

private String fileName;

public String getFileName() {
return fileName;
}

public void setFileName(String fileName) {
//处理下载文件名为中文状态下的编码方式
try {
this.fileName=new String(fileName.getBytes("ISO-8859-1"),"UTF-8");
} catch (Exception e) {
e.printStackTrace();
}
}

/**
* 该方法必须以get开头,get后的 首字母是小写 ,返回必须是流
* @return
*/
public InputStream getDownFile() throws Exception{
try {
// ServletActionContext.getResponse().setHeader("content-disposition", "attachment;fileName="+URLEncoder.encode(fileName, "UTF-8").toString());
return new FileInputStream(new File(ServletActionContext.getServletContext().getRealPath("/")+"filePacket/"+fileName));
} catch (Exception e) {
e.printStackTrace();
}
return null;
}

/**
* 下载成功,必须定义一个空方法
* @return
*/
public String execute(){
return "ok";
}

}
上面是java文件
<result-types><!-- 当下载时,选择取消产生错误的解决方法 -->
<result-type name="myStream"
class="com.sunspoter.lib.web.struts2.dispatcher.StreamResultX"></result-type>
</result-types>
<!-- 默认调用方法 execute 【下载操作】 -->
<action name="load" class="com.kd.zt.action.qek.DownloadAction">
<result name="ok" type="myStream">
<param name="inputName">downFile</param><!-- downFile 指的是被下载文件的入口输入流 -->
<param name="contentDisposition">attachment; filename=${fileName}</param>
</result>
</action>
上面是action
希望楼主早日解决!我手打的啊
追问
谢谢您的回答,可是我不是这种,单纯是桌面小程序!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
禅的and人生
2013-12-19
知道答主
回答量:17
采纳率:0%
帮助的人:6.2万
展开全部
如果想获得比如空格回车用java能够判断出来,写文件的时候可以写进去,如果说把字体什么的保存到文件里,如果是txt那真是不行,不知道富编辑框对你有没有用http://ueditor.baidu.com/website/download.html
追问
谢谢您的回答,可是我不是这种,单纯是桌面小程序!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式