本文介绍了用Java写入.bat文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试创建自己的RCP应用程序,但有一个问题:我想用Java代码打开一个批处理脚本,并向其中编写一些参数

I'm trying to create my own RCP application but I have a problem: I want to open a batch script with java code and write some arguments to it

任何帮助请先谢谢

推荐答案

批处理文件(后缀为.bat)基本上是一个简单的文本文件.

A batch file (with suffix.bat) is basically a simple text file.

要将文本写入文件,请使用FileWriter,例如

To write text to a file use a FileWriter, e.g.

FileWriter writer = new FileWriter("my.bat");
writer.write("REM a batch file");

这篇关于用Java写入.bat文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-21 19:44