javaFx如何鏈接外部網頁(從javafx內部打開新的網頁)

 

 

Hmm, 2 ways to do it actually.

 

No1 : Use the Desktop API of JDK6. It's simple to use. One example is here.

So, very basic code will go like this :

 

 

 

 

 

So, 2 things for running this code. First,Desktop API has been added in JDK6, so this code won't run on JDK5. 

Second, Add rt.jar(rt.jar of JDK6) file in the Libraries if you are using Netbeans

 

No2 : For only JavaFX code, we can use AppletStageExtension like this :

 

 

 

In this case, you cant send hyperlink from Desktop Application, but it will work fine for applet or Browser application. 

 

So, best is to use this and then use our normal funda : if {__PROFILE__}" != "browser") --> use the Desktop API code. What you say :).

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章