• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

All About making your own web browser

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Seeing Different videos on the net and reading basic books about Java I managed to create a basic web browser but the problem was that I couldn't translate the web pages as they are presented in google chrome for example and when I was pressing the google button in order to search for something it turned to do nothing except an annoying voice like beeep.How can I solve this problem.Thank you all in advance and most of you I
thank this forum that have helped me many times in the past . Code is below:

 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
At a quick glance, it seems you're using Swing's JEditorPane class to display HTML. Note that this is extremely limited in what it can do. Just about anything new on the web in the last 10 years won't be displayed, or not displayed correctly. For starters, try a page that uses nothing but HTML 3.2, no CSS, no JavaScript - that's what it can handle.
 
Frank Senkrovich
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am a begginner in Java so you say that I have to include CSS and Javascript in my web browser. Can I use JavaFx for that .I hear from people saying that It can display modern framework
crap.Is it true. If yes then what can I do ?Many Thanks. P.S.: Of course I don't and can't even try make better or look like chrome browser .I just wonna understand how things working.Thanks again.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic