-2

I am trying to use this class, but i'm having trouble importing it into my code. Anyone know it's not allowing me to import it? It is giving me a "Cannot resolve symbol 'edu'"

Collin Li
  • 43
  • 6
  • Is the jar on your classpath? – shmosel May 20 '19 at 17:05
  • How are you trying to import it? I have the slight idea you might not yet use a build tool like maven or gradle, so I'd suggest you look into one of them. They handle importing external libraries into your classpath much better than just downloading a jar and importing it by hand. – Aarkon May 20 '19 at 17:09

1 Answers1

1

You'll find the details here


You need to download the .jarfrom https://search.maven.org/search?q=a:edu-mines-jtk, and add to your classpath,

Or use maven, and just add the dependency : What does Maven do, in theory and in practice? When is it worth to use it?

azro
  • 53,056
  • 7
  • 34
  • 70