• 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

Can a Browser as fast as FireFox be developed using Java?

 
Ranch Hand
Posts: 213
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can a Browser as fast as FireFox be developed using Java?


Varuna
 
Ranch Hand
Posts: 1609
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
"Fast" is a performance issue, and i think language alone doesn't contribute to it.
 
Bartender
Posts: 9626
16
Mac OS X Linux Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Akhilesh is right. With any network program, there's a lot of factors that are out of your control. Firefox tries to speed things up with optimizations like prefetching pages. That kind of optimization would be easy to replicate.
Java has long been as fast as compiled code for most tasks, and there are pure Java browsers so I don't think Java itself would be a problem.
That said, there's a reason why Chrome uses Webkit rather than a home-built rendering engine. The level of effort and knowledge in building a fast browser is large, and it no longer makes sense to reinvent the wheel. Building a fast browser in Java may be possible, but it doesn't really make sense when we already have several very capable browsers on the market.
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic