如何在脚本atom包和java中使用外部库?

时间:2017-03-28 20:48:24

标签: java atom-editor

在使用带有atom / java的脚本包时如何配置类路径?

我知道我的课程路径是:

USR /本地/ algs4 / algs4.jar

以下是我正在测试的代码:

导入edu.princeton.cs.algs4。*;

公共课Wge​​t {

public static void main(String[] args) {

    // read in data from URL
    String url = args[0];
    In in = new In(url);
    String data = in.readAll();

    // write data to a file
    String filename = url.substring(url.lastIndexOf('/') + 1);
    Out out = new Out(filename);
    out.println(data);
    out.close();
}

}

1 个答案:

答案 0 :(得分:0)

由于您正在使用algs4,请使用普林斯顿的网站并搜索类路径。 http://algs4.cs.princeton.edu/code/