1

我想编写一个将 url 分类为恶意和良性的 java 应用程序。即,当用户在地址栏中键入一个 url 时,我的程序应该读取该 url ,对其进行分类,如果它是恶意的,则将其阻止。用户输入后,如何从浏览器的地址栏中读取 url..

请帮忙..

谢谢

4

1 回答 1

1

You should implement this as an HTTP proxy, not a browser extension. Then you can focus on your algorithm instead of the details of integrating Java with the various browsers.

于 2009-12-09T06:33:31.593 回答