How do you use a Java Library?

前端 未结 5 1948
逝去的感伤
逝去的感伤 2020-12-08 14:18

I\'m trying to use an open source java library to visualize nodes and edges in a graph, but I\'m completely lost.

I have a bunch of jar files in a folder. Clicking o

5条回答
  •  清歌不尽
    2020-12-08 14:39

    I believe if you put the jars in your classpath, you can import and use classes just like you would a standard library. Figuring out the classpath can be confusing, but you can just set it when you start your jvm. Your IDE may have options for it, too.

    Most java problems are classpath problems.

提交回复
热议问题