I am looking for the embedded browser which can be embedded in my java application. It should be a framework which can use the existing browser of OS. It should provide the facility of accessing the various browser controls (back, refresh, stop ... ) by java code. it should work on both window and linux.
Looking for a embedded browser
443 Views Asked by rbhawsar At
2
There are 2 best solutions below
1
GreyBeardedGeek
On
The Java Desktop Integration Components project has this - http://java.net/projects/jdic
I used it a few years ago, and unfortunately, it looks like it hasn't been updated in 2 or 3 years, but it probably still works ok.
The other option that I evaluated at the time was http://www.webrenderer.com It looked very good, and is apparently still a viable, supported product. The company that I worked for simply didn't want to pay for it, and went with the free, but somewhat inferior (IMHO) JDIC implementation.
If you are just looking to be able launch a native browser, without embedding it, take a look at java.awt.Destop.browse() in JDK 6 or 7
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in BROWSER
- Why does Angular send Http Request Method: Options before POST?
- Trick browser into resizing the viewport dimensions by 1px
- Why is it so hard to style <select> and <option> elements?
- Change writing language at browser
- Selenium stops running after click() function runs
- Are there any debugging tools for the Opera Mini mobile browser?
- place 1 label top, 1 input bottom and 2 buttons left
- Why clear cache does not work with all browsers?
- Opening Browser Instances from different Vendors
- Browser's not displaying images correctly
- Open a html document with php
- How to run a .jar inside browser?
- Why/how does the browser decide ☃.net goes to xn--n3h.net
- How do you invoke another app from a child browser
- Firefox and SSL pages - takes very long on certain sites
Related Questions in CROSS-PLATFORM
- How to tell the difference between linux and mac
- Possible to ignore certain submodules on Git checkout?
- Swipe between webviews in Xamarin
- How to invoke an Integration Service in Kony Studio that is created in the MobileFabric Console?
- Kony: Ant build error=exec-shell returned: 1
- Best practice for cross-platform mono project layout when using native dll's
- Equivalents to gcc/clang's march=native in other compilers?
- Platform specific cut paste mnemonics swing.
- Are there any naming conventions for command line arguments?
- Why is NetBeans running my program on OS X, but not building it into a JAR?
- How to Upgrade Cordova 3.5.0-0.2.4 to any higher version?
- Meteor.js - How to implement different templates on a cross-platform app
- Rcpp: Platform differences in output
- Cross-Platform Vector Format
- How to manage separate GUI processes in a Qt application?
Related Questions in WEBBROWSER-CONTROL
- Read iFrame contents in a WPF browser window c#
- Choppy HTML5 Video Playback
- is the c# webbrowser reliable?
- Cache Manifest with Windows Forms WebBrowser control (Visual Studio)
- Inspect element from my WPF WebBrowser, using "inspect element(s)"(IE,Chrome,Firefox) to get the css path("copy css-path")
- How to invoke element in a WebBrowser by the class name(s)?
- VB 2010 Express Webrowser Scrollto
- Print multiple files with a WebBrowser Control
- webbrowser documentcompleted event with Dynamic Javascript sites
- Loading new HTML into Visual Basic web browser
- How to use Google Maps API v3 ClientID in application > Webbrowser control
- Finding element tag name for search results of a webpage in a webbrowser control
- CSS-only tabs in a C# System.Windows.Forms.WebBrowser
- WPF WebBrowser execCommand("styleWithCSS")
- window.external throwing error (Unexpected call to method or property access.) in Internet Explorer 10
Related Questions in EMBEDDED-BROWSER
- Where is the rubymine embedded Web Preview?
- Offscreen & embeddable browsers comparison (for use in a game)
- Selenium / WatiN - Automating Embedded IE inside Desktop Application
- Using Devexpress Ribbonform With Cefsharp Browser Resizes The Window To Smaller Size
- Looking for a embedded browser
- Device "Mobile Intel(R) 4 Series Express Chipset Family" (\\.\DISPLAY1) initialization failed :
- jdk1.6 update 32 and JavaFX2.1 does work?
- DocumentCompleted
- Google will discontinue support for sign-ins to Google accounts from embedded browser frameworks
- CEFsharp load url is holding on to the previously navigated url
- Wrong viewport/page height in embedded Facebook browser in iOS 9.x
- How to display Microsoft Outlook mail content using the _IECreateEmbeded function?
- Android studio - plugins not working instead following err is throwing -> JCEF is not supported in running IDE?
- How to support window.print() in a embedded web browser using JavaFx java 1.7
- How to use Google OAuth 2 in facebook embedded browser
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
you could always use selenium. it's not an "embedded browser" in the sense of something like IE where you can just embed a canvas in another app. It will however, allow you to open actual browser windows for the browser of your choice (ie, firefox, chrome, etc...), and control it with the selinium webdriver api.
Not sure if this meets your criteria.