txt文件保存到服务器/读取服务器文件

10 篇文章 0 订阅
5 篇文章 0 订阅

这里是本地存取文件


import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.nio.charset.Charset;
import org.apache.commons.io.FileUtils;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.util.ClassUtils;
import net.sf.json.JSONObject;
@SpringBootApplication
public class RunApplication {
	public static void main(String[] args) throws IOException {
		SpringApplication.run(RunApplication.class, args);
		// 服务器存文件
		JSONObject jObject2 = new JSONObject();
		jObject2.put("missionStatus", "一号房间");
		jObject2.put("destination", "destination");
		jObject2.put("arrived", "arrived");
		jObject2.put("vin", "vin");
		// 获取项目classes/static的地址
		String realPath = ClassUtils.getDefaultClassLoader().getResource("static").getPath() + "/file/";
		String fileNameString = "missionStatus.txt";
		File savedFile = new File(realPath, fileNameString);
		try {
			FileUtils.writeStringToFile(savedFile, jObject2.toString(), Charset.defaultCharset());
		} catch (IOException e1) {
			// TODO Auto-generated catch block
			e1.printStackTrace();
		}
//取文件
		String nullpath2 = ClassUtils.getDefaultClassLoader().getResource("static").getPath()
				+ "/file/missionStatus.txt";
		BufferedReader br2 = new BufferedReader(new FileReader(nullpath2));
		String str2 = null;
		while ((str2 = br2.readLine()) != null) {
			JSONObject jsonObject = JSONObject.fromObject(str2);
			System.out.println("服务器读取文件" + jsonObject.toString());
			System.out.println("服务器读取文件" + str2);// 这里是读取到的数据,一行一行读取 } }}
		}
	}

在这里插入图片描述
在项目中可能找不到这个文件,但是找到项目编译后的内容,可以看到这个文本
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值