阻止所有浏览器访问网站

时间:2011-01-13 11:41:52

标签: java web network-programming java-native-interface

问候,

我想问一下是否有办法阻止网站动态访问计算机?我的意思是这个功能可以编码(在java原生接口上)?

非常感谢您的回复。

谢谢, Cyril H。

2 个答案:

答案 0 :(得分:1)

是的,您可以使用Java编写简单的HTTP代理服务:

http://www.java2s.com/Code/Java/Network-Protocol/Asimpleproxyserver.htm

或者,现有的代理解决方案很多可能会满足您的需求:

http://www.roseindia.net/opensource/freeproxyservers.php

然后,您将配置访问网站(例如您的浏览器)的软件/设备指向该代理,以便通过它传递所有HTTP通信。

然后,您的代理可以根据您想要编码的逻辑限制访问您想要的任何URL。

如果你想获得真正的花哨/安全并要求人们使用代理(而不是选择绕过代理),你可以这样做,但考虑到你的问题,这可能比你需要的更多。

答案 1 :(得分:0)

您可以使用Files课程向hosts file附加条目,如以下帖子所示:How to append text to an existing file in Java

这适用于所有平台(是的,所有平台:包括Windows,Mac,Linux,Android等),并阻止所有浏览器的访问,无需代理或特殊浏览器扩展(可以删除)在大多数情况下)。

这是一些简单的代码来启动你。随意编辑它以满足您的需求:

public void blockSite(String url) {
    // Note that this code only works in Java 7+,
    // refer to the above link about appending files for more info

    // Get OS name
    String OS = System.getProperty("os.name").toLowerCase();

    // Use OS name to find correct location of hosts file
    String hostsFile = "";
    if ((OS.indexOf("win") >= 0)) {
        // Doesn't work before Windows 2000
        hostsFile = "C:\\Windows\\System32\\drivers\\etc\\hosts";
    } else if ((OS.indexOf("mac") >= 0)) {
        // Doesn't work before OS X 10.2
        hostsFile = "etc/hosts";
    } else if ((OS.indexOf("nux") >= 0)) {
        hostsFile = "/etc/hosts";
    } else {
        // Handle error when platform is not Windows, Mac, or Linux
        System.err.println("Sorry, but your OS doesn't support blocking.");
        System.exit(0);
    }

    // Actually block site
    Files.write(Paths.get(hostsFile),
                ("127.0.0.1 " + url).getBytes(),
                StandardOpenOption.APPEND);
}

进口上述方法:

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.nio.file.StandardOpenOption;

样本用法:

blockSite("www.example.com");

注意:

这需要以管理员身份(Windows)或使用sudo(Mac,Linux)运行。

这可能不适用于某些平台,因为它仅在Ubuntu Linux上进行过测试。

P.S。如果您正在制作家长控制软件,您还应该研究阻止程序。并非您想要阻止的所有内容都在Internet上。这是一些简单的代码:

/**
    Blocks programs.
    @param programs - The array of process names.
    @param timeout - The time between blocks, in milliseconds.
    This parameter should not be set below 100, to avoid slowdown.
    @author https://stackoverflow.com/users/5905216/h-a-sanger
*/
public void blockPrograms(int timeout, String...programs) throws IOException {
    // Get OS name
    String OS = System.getProperty("os.name").toLowerCase();

    // Identify correct blocking command for OS
    String command = "";
    if ((OS.indexOf("win") >= 0)) {
        command = "taskkill /f /im ";
    } else if ((OS.indexOf("mac") >= 0) || (OS.indexOf("nux") >= 0)) {
        command = "killall ";
    } else {
        // Handle error when platform is not Windows, Mac, or Linux
        System.err.println("Sorry, but your OS doesn't support blocking.");
        System.exit(0);
    }

    // Start blocking!
    while(true) {
        // Cycle through programs list
        for(int i = 0; i < programs.length; i++) {
            // Block program
            Runtime.getRuntime().exec(command + programs[i]);
        }
        // Timeout
        try { Thread.sleep(timeout); } catch(InterruptedException e) {}
    }
}

导入上述代码:

import java.io.IOException;

样本用法:

blockPrograms(100, "chrome", "firefox");

再次,请注意,这只是在Ubuntu Linux上测试过的。

P.P.S:请不要对我不好,我在回答有关SO的问题时还是比较新的。