jxl java 受保护的视图,java.io.FileNotFoundException当图像文件在jar中使用jxl.write.WritableImage时...

I am using WritableImage to write image into xls file, when I run it inside eclipse it is working fine. But when I run it in executable jar, I getting FileNotFoundException.

WritableImage image = new WritableImage(0.0D, 0.0D,

1.0D, 3.0D,

new File(getClass().getResource("/img/abouts.png").getPath()));

The image is indeed inside the jar. C:\scheduler-1.0-SNAPSHOT-jar-with-dependencies.jar\img\abouts.png

Here's the exception:

java.io.FileNotFoundException: file:C:scheduler-1.0-SNAPSHOT-jar-with-dependencies.jar!/scheduler.jar!/img/abouts.png (No such file or directory)

at java.io.FileInputStream.open(Native Method)

at java.io.FileInputStream.(FileInputStream.java:120)

at jxl.biff.drawing.Drawing.getImageBytes(Drawing.java:778)

at jxl.biff.drawing.BlipStoreEntry.(BlipStoreEntry.java:98)

at jxl.biff.drawing.DrawingGroup.write(DrawingGroup.java:427)

at jxl.write.biff.WritableWorkbookImpl.write(WritableWorkbookImpl.java:931)

at com.flagpole.client.IndividualCabinSched.(IndividualCabinSched.java:218)

at com.flagpole.client.Reports.getIndividualCabinScheReport(Reports.java:948)

at com.flagpole.client.Reports.actionPerformed(Reports.java:652)

at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2028)

at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2351)

解决方案

Once the image is an a jar it is an embedded-resource that will not be accessible by File. Normally we would use a method call or constructor that accepts URL, but the API being used does not support that.

So instead you might use new WritableImage(double,double,double,double,byte[]) where the byte[] is the bytes of the image.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值