Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想编写一个将 url 分类为恶意和良性的 java 应用程序。即,当用户在地址栏中键入一个 url 时,我的程序应该读取该 url ,对其进行分类,如果它是恶意的,则将其阻止。用户输入后,如何从浏览器的地址栏中读取 url..
请帮忙..
谢谢
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.