我正在尝试从Eclipse导出Java项目。该项目包括外部图书馆。我目前正在尝试使用Fat Jar在导出的jar中打包这些库。我在清单中指定了Main类以及Fat Jar GUI。我的清单看起来像这样:
Manifest-Version: 1.0
Main-Class: com.selenium.test.TestPages
然而,当我跑
时java -jar *name of jar*.jar
我收到错误:
Error: An unexpected error occurred while trying to open file *name of jar*_fat.jar
有没有办法让它正常运行?谢谢。