我正在爲我的Minecraft服務器開發一個Screen Share工具,我希望你能夠點擊一個按鈕,打開一個像\ program.exe這樣的應用程序,另一個按鈕打開一個目錄,如%appdata%.minecraft單擊按鈕時如何打開文件/文件夾?
單擊按鈕時如何打開文件/文件夾?
這裏是我的代碼,你可以編輯爲例:
import java.awt.EventQueue;
import javax.swing.JFrame;
import javax.swing.JProgressBar;
import javax.swing.JButton;
public class Minenow {
private JFrame frmMinenow;
/**
* Launch the application.
*/
public static void NewScreen() {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
Minenow window = new Minenow();
window.frmMinenow.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}
/**
* Create the application.
*/
public Minenow() {
initialize();
}
/**
* Initialize the contents of the frame.
*/
private void initialize() {
frmMinenow = new JFrame();
frmMinenow.setTitle("Minenow");
frmMinenow.setBounds(100, 100, 793, 503);
frmMinenow.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
frmMinenow.getContentPane().setLayout(null);
JButton btnNewButton = new JButton(".minecraft");
btnNewButton.setBounds(58, 50, 161, 80);
frmMinenow.getContentPane().add(btnNewButton);
}
`}
你有問題要問?在這篇文章中沒有真正的問題。 – Michael