我與我的桌面html
文件嘗試。現在它的工作正常。 (我的默認瀏覽器是chrome
)
試試吧。
import java.awt.BorderLayout;
import java.awt.Button;
import java.awt.Desktop;
import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.File;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class FileOpenBrowser {
public static void main(String[] args) {
// TODO Auto-generated method stub
JFrame frame = new JFrame("FileOpenBrowser"); // set API Name
JPanel topPanel = new JPanel(new FlowLayout()); // set Panel Layout
File urlDesktop = new File(
"C://Documents and Settings/Hariharan/Desktop/help.html");
Button btn = new Button("Help");
btn.setBounds(50, 100, 60, 30);
topPanel.add(btn);
frame.add(topPanel, BorderLayout.PAGE_START);
frame.setSize(300, 300);
frame.setVisible(true);
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
btn.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
Desktop.getDesktop().open(urlDesktop);
} catch (Exception e1) {
e1.printStackTrace();
}
}
});
}
}
你必須給我們的例外。 –
@KarthikeyanVaithilingam對不起,我沒有運行,因爲它顯示代碼編譯有錯誤。如果我將文件添加到'src'包中,代碼不會成功編譯 – Previn
您必須給我們編譯錯誤 –