10

When I try to import org.apache.xml.serialize.XMLSerializer, I got the below error msg:

 The import org.apache.xml.serialize.XMLSerializer cannot be resolved

Can anyone tell me the cause? Thanks!!

Reimeus
  • 158,255
  • 15
  • 216
  • 276
zoe
  • 905
  • 5
  • 12
  • 18

1 Answers1

11

You are missing xercesImpl-2.9.0.jar from your build path. If you are using Maven, you can add the dependency:

<dependency>
   <groupId>xerces</groupId>
   <artifactId>xercesImpl</artifactId>
   <version>2.9.0</version>
</dependency>
Reimeus
  • 158,255
  • 15
  • 216
  • 276