spring 上传file txt文件

文章展示了如何在Java中使用FileWriter和BufferedWriter进行文件内容写入,以及CommonUtility类中的FTP文件上传方法。
摘要由CSDN通过智能技术生成

直接上代码

    public static void main(String[] args) {

		  // 创建输出文件 (这是我们公司创建file文件的方式,公司自己的依赖)
        File outputFile = Take.Subset().getTemporaryFile();
        try (
                FileWriter fileWriter = new FileWriter(outputFile);
                BufferedWriter bufferedWriter = new BufferedWriter(fileWriter)
        ) {
            String[] lines = {"第一行内容", "第二行内容", "第三行内容"}; // 你的内容数组
            for (String line : lines) {
                bufferedWriter.write(line);
                bufferedWriter.newLine(); // 换行
            }
        } catch (IOException e) {
            e.printStackTrace();
        }

        CommonUtility.pushFtp(req,"/INTERFACE/GALILEO/",outputFile);
	}
public class CommonUtility {

	public static void pushFtp(MapMessage params, String filePath,File tmpFile) throws Exception {
		MapMessage map = DBUtils.getOne(null, "KA0027.M_DICTIONARY.SEL013").getMapMessage();
		//文件名称
		String filename = map.getString("value");
		File targetFile = new File("C:\\111", filename);

		// 使用FileOutputStream将源文件内容写入目标文件
		try (FileOutputStream fos = new FileOutputStream(targetFile);
			 FileInputStream fis = new FileInputStream(tmpFile)) {
			byte[] buffer = new byte[1024];
			int bytesRead;
			while ((bytesRead = fis.read(buffer)) != -1) {
				fos.write(buffer, 0, bytesRead);
			}
			fos.flush();
		}
	}
}

在这里插入图片描述

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值