0

非常に単純な質問であるはずのことについて、約1〜2時間のグーグル検索を行いました

プログラム GUI のボタンを使用して、デスクトップ (C:\Users\Computer\Desktop\text.txt) の text.txt などの txt ドキュメントを起動する必要があります。

ボタンのコードは簡単です。

JButton  btnAddButton1 = new JButton("Display ShopEmployee"); // start of button
                        btnAddButton1.setVisible( false); // removing from sight
                        contentPane.add(btnAddButton1);       
                        btnAddButton.addActionListener(new creatingOpenFileListener()); // the button is going to create a Person
                        btnAddButton.setVisible(true);

そしてアクションリスナー:

 class creatingOpenFileListener implements ActionListener
        {
           public void actionPerformed(ActionEvent event)
           {

           }
        }

私はできる限りのことを試しましたが、アイデアが不足しているだけで、グーグルの5ページに移動して、単純な質問であるべきものに対する答えを探しました。

編集:GUIでコンテンツを開くのではなく、起動することを意味します。自分でクリックするかのように起動します。

答え

     try
    {
        Desktop.getDesktop().open(new File("C://Users//Computer//Desktop//text.txt"));
    }
    catch(java.io.IOException e)
    {
        System.out.println("IOError");
    }
4

1 に答える 1

6

次のようなものを試してください...

Desktop.getDesktop().open(new File("C:/Users/Computer/Desktop/text.txt")));

詳細については、デスクトップ クラスと統合する方法をご覧ください...

于 2013-06-10T07:13:13.283 に答える