有关于如何开始构建自己的浏览器的文章吗?
大家好,最近我有点好奇,想做一个浏览器。我想使用现有的引擎,例如 Gecko 或 Webkit。网络上是否有关于如何入门的资源和示例?语言选择并不重要(但请不要使用 VB。这是我找到的唯一示例代码)
Hello recently I've been a bit curious and wanted to make a browser. I'd like to use an existing engine though such as Gecko or Webkit. Are there any resources on the web for how to get started and any examples? Language choice doesn't really matter(but no VB please. That was the only example code I found)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
或者研究一些使用 Webkit 的应用程序。这些项目很可能不像 Chromium 那样复杂。
Or study some applications using Webkit for example. Chances are, these projects are not as complex as chromium.
我建议您使用 Swing 或 SWT 在 Java 中构建浏览器。它们拥有您需要的所有组件,因此您需要将它们组合在一起并开始解决更棘手的问题。该文档很好,您甚至可以找到可以帮助您完成大部分工作的教程。
我最近下载了 Firefox 或 Chrome 的代码,这似乎是一个更难开始的地方。与 Java 应用程序相比,要在您的计算机上运行构建需要大量的设置和开销。
I'd recommend you build a browser in Java with Swing or SWT. They have all the components you'll need, so you need to put them together and start figuring out the tougher problems. The documentation is good, and you may even find tutorials that get you most of the way there.
I recently downloaded the code for Firefox or Chrome, and this seems like a much more difficult place to start. There's lots of setup and overhead to get a build working on your machine compared with a Java app.