?? browser.bte
字號:
<%bte.doc super="item.bte" %><%bte.tpl name=pageTitle%>Browser Opener<%/bte.tpl%><%bte.tpl name=description%>Open a browser from a Java application on Windows, Unix, or Macintosh.<%/bte.tpl%><%bte.tpl name=keywords%>open, open, url, url, uri, browser, browser, web, web, web browser, system, system browser, launch, launcher, openurl, mrjfileutils, mrj, windows, mac, macintosh, linux, unix, solaris, ie, internet explorer, netscape, mozilla, lynx<%/bte.tpl%><%bte.tpl name=content%><div class=i18n> Internationalization - included languages: <ul> <li>Dansk</li> <li>Deutsch</li> <li>English</li> <li>Español</li> <li>Français</li> <li>Italiano</li> <li>Polska</li> </ul> Translations gladly accepted. Please translate <a href="Browser.properties.html">Browser.properties</a>.<br> You may want to use: <a href="http://ostermiller.org/attesoro/">Attesoro - A Java Translation Editor</a></div><p>Open a browser from a Java application on Windows, Unix, or Macintosh.</p><ul><li><b>Windows</b> - Opens the url in the system browser by calling a url.dll that can open the url using FileProtocolHandler. This dll fails to open file urls with spaces. In that case, a url shortcut is written to the hard drive, and the shortcut is then opened.</li><li><b>Macintosh</b> - Opens the url trying first the using the <a href="http://developer.apple.com/techpubs/macosx/Cocoa/Reference/ApplicationKit/Java/Classes/NSWorkspace.html">Cocoa NSWorkspace</a> and then the <a href="http://developer.apple.com/qa/java/java12.html">MRJ</a> classes provided by Apple. NSWorkspace is used because the MRJ toolkit for Mac OS X does not implement openURL() yet. This class links to the Cocoa NSWorkspace and the MRJ dynamically at runtime, so this class will compile even on computers such as Windows and Linux which do not have the Cocoa NSWorkspace and the MRJ and installed.</li><li><b>Unix, Linux, and other systems</b> - Checks to see if the following browsers are in the path using the 'which' command: Mozilla, Netscape, and Lynx. It can open the url in any of these browsers.</li></ul><p>Usually the browser chooses if the url should be opened in a new window or not. Internet Exploreron windows opens each URL in the same window while Mozilla opens each in a new window. This can be annoying for developers trying to open a bunch of urls using this class, but have each url in its ownwindow. Workaround methods that use Javascript to try and open urls in new windows have been provided forcases in which all in the same window is not desirable.</p><br clear=all><div class=examplecode><h3>Example</h3><pre><span class=comment>// Initialize the class.// Needs to be done once.</span><span class=identifier>Browser</span><span class=separator>.</span><span class=identifier>init</span><span class=separator>();</span><span class=comment>// Display this page</span><span class=identifier>Browser</span><span class=separator>.</span><span class=identifier>displayURL</span><span class=separator>(</span><span class=literal>"http://ostermiller.org/utils/Browser.html"</span><span class=separator>);</span></pre></div><p>There is also a configuration dialog box (Swing) that can be used in GUI applications that use this class. This allows users to choose their own browser or command line which should be used to open the url. The default command line parsing in Java tokenizes only on spaces. This class uses a custom command line parser that allows quoted strings and escape characters so that the command line to the browser can be specified more easily on a variety of platforms. </p><p><img src="BrowserDialog.png" alt="Browser Configuration Dialog" width="490" height="345"></p><p> The original idea for this class came from a JavaWorld <a href="http://www.javaworld.com/javaworld/javatips/jw-javatip66.html">Java Tip</a>. That implementation has some serious problems:<ol> <li>Security - With the JavaWorld example it would be possible to give the class a url to open that would fool the command line parser and possibly allow something other than the browser to be executed. (Any url with white space in it would break the example.) com.Ostermiller.util.Browser manipulates the url and urlencodes characters which might confuse the command line parser.</li> <li>Out of date - There are a variety of browsers available on Linux. It would be nice to check for something better than Netscape. com.Ostermiller.util.Browser checks for a variety of browsers. <li>Blocking - If you are using Netscape under Linux, a Java program using this library will wait for Netscape to close before continuing. com.Ostermiller.util.Browser waits for one second to check if it is still running rather than blocking.</li></ol></p><p>Locale specific string for this class are in the <a href="http://www.gjt.org/servlets/JCVSlet/show/gjt/com/Ostermiller/util/Browser.properties/HEAD">com.Ostermiller.util.Browser resource bundle</a>. Translations are welcome and appreciated.</p><p>[<a href="download.html">Download /w Source</a> |<a href="http://www.gjt.org/servlets/JCVSlet/log/gjt/com/Ostermiller/util/Browser.java/0">Version History</a> |<a href="Browser.java.html">Browse Source</a> |<a href="doc/com/Ostermiller/util/Browser.html">Documentation</a>]</p><%/bte.tpl%><%/bte.doc%>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -