无效的文件(坏的幻数):当我执行JAR文件时,如何解决这个问题不能使用这个Java代码?

IM triying运行这段代码中使用事件执行一个jar文件,但没有工作无效的文件(坏的幻数):当我执行JAR文件时,如何解决这个问题不能使用这个Java代码?

我怎么能解决

IM triying运行这段代码中使用事件执行一个jar文件,但没有作品

我怎么能解决

JButton cn= new JButton("push me3"); 

cn.setBounds(0,0,295,20);

f.add(cn);

cn.addActionListener(new ActionListener(){

@Override

public void actionPerformed(ActionEvent e) {

String title =hellopanelx40.getText();

try{

//All your IO Operations

Process proc = Runtime.getRuntime().exec("/home/example.jar");

proc.waitFor();

// Then retreive the process output

InputStream in = proc.getInputStream();

InputStream err = proc.getErrorStream();

byte b[]=new byte[in.available()];

in.read(b,0,b.length);

System.out.println(new String(b));

byte c[]=new byte[err.available()];

err.read(c,0,c.length);

System.out.println(new String(c));

}catch(Throwable t){

t.printStackTrace();

}

}

});

请帮我

回答:

在执行exec(),尝试改变“JAV一个-jar /home/example.jar“

以上是 无效的文件(坏的幻数):当我执行JAR文件时,如何解决这个问题不能使用这个Java代码? 的全部内容, 来源链接: utcz.com/qa/259828.html

回到顶部