-3

Here is problem

Please guide me

I tried to add libraries which I download and it didnot work. can someone help me to solve this problem

273K
  • 29,503
  • 10
  • 41
  • 64
  • are you using maven ? –  Jan 05 '23 at 07:53
  • Please [don't upload text as image](https://meta.stackoverflow.com/a/285557/13447). Edit your question to contain all the information in text form - consider to use the editor's formatting options. Also see [ask]: A screenshot of an IDE is not a proper problem description. Check [mcve] for a description of what is required to help, and what will help others coming after you finding the same, or a similar problem and its solution – Olaf Kock Jan 05 '23 at 08:32
  • Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking. – Community Jan 05 '23 at 08:46
  • The tag [tag:STL] is wrong here. Read the descriptions while choosing tags. – 273K Jan 05 '23 at 15:16

1 Answers1

2

If you are using maven :

For For Apache Batik:

<dependency>
  <groupId>org.apache.xmlgraphics</groupId>
  <artifactId>batik-all</artifactId>
  <version>1.13</version>
</dependency>

For For OpenPnP:

<dependency>
  <groupId>org.openpnp</groupId>
  <artifactId>openpnp-lib</artifactId>
  <version>2.2.0</version>
</dependency>

Apply the import as required.

import org.apache.batik.dom.svg.SVGDOMImplementation;
import org.openpnp.model.LengthUnit;

If you are not using maven:

1.Download the latest version of the libraries from the Apache Batik website (https://xmlgraphics.apache.org/batik/) and the OpenPnP website (http://openpnp.org/).

2.Add the libraries to your project's classpath. This will typically involve adding the libraries to your project's build path or referencing them in your build tool's configuration files.

Doing above must help you in general.