gpt4 book ai didi

java - 将java中的字符串传递到批处理文件中以用于其他目的

转载 作者:太空宇宙 更新时间:2023-11-04 14:38:31 25 4
gpt4 key购买 nike

我目前正在寻找将 java 中的字符串传递到批处理文件的方法,其中多个命令将基于该文件运行。

例如..

JFileChooser chooser = new JFileChooser();
JButton btnSelect = new JButton("SELECT");
btnSelect.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent args)
{

//chooser.setMultiSelectionEnabled(true); //enable multiple selection of files
int i = chooser.showOpenDialog(null);

if (i == chooser.APPROVE_OPTION)
{
textField.setText(chooser.getSelectedFile().getAbsolutePath());
}

//works. able to output file path.
//System.out.println(chooser.getSelectedFile().getAbsolutePath());
}
});
//when start button is selected
btnStart.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent args)
{
// image info code
try
{
//System.out.println(chooser.getSelectedFile().getAbsolutePath());
//create new process
String command = "cmd /c start /wait "+DetectDrive+"\\imageinfo.bat";
Process p = Runtime.getRuntime().exec(command);

//cause this process to stop until process p is terminated
p.waitFor();
}
catch (IOException | InterruptedException e1)
{
e1.printStackTrace();
}
}
}

这是我的 java 编码的一部分。但我想要的是,当用户使用“选择”选项选择一个文件时,这个文件路径是System.out.println(chooser.getSelectedFile().getAbsolutePath()); .

如何将此参数传递给批处理文件以供其他用途?因为我的批处理文件需要用户选择的文件路径。

我听说有一种方法,但我不知道如何..我尝试研究但似乎不起作用。任何帮助将不胜感激!!!

已编辑

我已将其写入我的 java 编码中:

String filePath = chooser.getSelectedFile().getAbsolutePath();
//create new process
String command = "cmd /c start /wait "+DetectDrive+"\\BatchFiles\\imageinfo.bat";
Process p = Runtime.getRuntime().exec(new String[]{command,"\""+filePath+"\""});
p.waitFor();

当用户选择一个文件(例如 E:\jooo.txt)时,filePath能够存储该文件路径。但是当我运行它时, Process p = ... 似乎有问题。

而且我不知道要向批处理文件中写入什么内容,以便用户选择的文件路径将显示在批处理文件中。

例如(在我的批处理文件中):

echo %filePath%

这似乎不起作用。我应该如何在批处理文件中编码,以便它显示用户在java中选择的文件路径?

我是这个领域的新手,所以我需要更多帮助。任何帮助将不胜感激!

编辑2

java.io.IOException: Cannot run program "cmd /c start /wait E:\\imageinfo.bat": CreateProcess error=2, The system cannot find the file specified
at java.lang.ProcessBuilder.start(Unknown Source)
at java.lang.Runtime.exec(Unknown Source)
at java.lang.Runtime.exec(Unknown Source)
at Volatility$3.actionPerformed(Volatility.java:187)
at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
at java.awt.Component.processMouseEvent(Unknown Source)
at javax.swing.JComponent.processMouseEvent(Unknown Source)
...

这是我的错误。我现在正在尝试调试。

最佳答案

String[] command = 
new String[]{"cmd", "/c", "start", "/wait",
DetectDrive+"\\imageinfo.bat", fileToPath};

无耻地从另一个网站借用了答案。

关于java - 将java中的字符串传递到批处理文件中以用于其他目的,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25246435/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com