bajie-git

Results 15 comments of bajie-git

I ran into the same problem as you. I tested on several computers of my colleagues. Some of them worked well and some of them didn't

我也碰到这个问题了,目前发现是因为drawing.xml文件少了standalone="yes"标签导致的 把excel解压,在对应的drawing.xml头部插入standalone="yes"标签,在压缩回xlsx后图片就可以正常展示了,但是我不知道怎么通过easyexcel来实现这个 ![image](https://user-images.githubusercontent.com/63085735/217141834-1abeec8e-5762-456e-a67e-7879d99b31a1.png)

> 我也碰到这个问题了,目前发现是因为drawing.xml文件少了standalone="yes"标签导致的 > > 把excel解压,在对应的drawing.xml头部插入standalone="yes"标签,在压缩回xlsx后图片就可以正常展示了,但是我不知道怎么通过easyexcel来实现这个 ![image](https://user-images.githubusercontent.com/63085735/217141834-1abeec8e-5762-456e-a67e-7879d99b31a1.png) 我后来又进行了一些验证,发现根本原因不是因为修改了drawing.xml文件,只要把xlsx解压,然后在压缩回xlsx就可以让图片显示,感觉应该是easyexcel打包时的问题

> > 我也碰到这个问题了,目前发现是因为drawing.xml文件少了standalone="yes"标签导致的 > > 把excel解压,在对应的drawing.xml头部插入standalone="yes"标签,在压缩回xlsx后图片就可以正常展示了,但是我不知道怎么通过easyexcel来实现这个 ![image](https://user-images.githubusercontent.com/63085735/217141834-1abeec8e-5762-456e-a67e-7879d99b31a1.png) > > 我后来又进行了一些验证,发现根本原因不是因为修改了drawing.xml文件,只要把xlsx解压,然后在压缩回xlsx就可以让图片显示,感觉应该是easyexcel打包时的问题 说一下我得解决办法吧,基于上面的进度最后还是基于解压在压缩的思路实现的 将生成好的excel文件路径传入该方法即可,如果是基于文件流的可以自己封装zipinputstream ```java public static void easyExcelRepairPic(String excelPath) { File file = new File(excelPath); if (!file.isFile()) { throw new RuntimeException("excel文件不存在");...

> > > 我也碰到这个问题了,目前发现是因为drawing.xml文件少了standalone="yes"标签导致的 > > > 把excel解压,在对应的drawing.xml头部插入standalone="yes"标签,在压缩回xlsx后图片就可以正常展示了,但是我不知道怎么通过easyexcel来实现这个 ![image](https://user-images.githubusercontent.com/63085735/217141834-1abeec8e-5762-456e-a67e-7879d99b31a1.png) > > > > > > 我后来又进行了一些验证,发现根本原因不是因为修改了drawing.xml文件,只要把xlsx解压,然后在压缩回xlsx就可以让图片显示,感觉应该是easyexcel打包时的问题 > > 说一下我得解决办法吧,基于上面的进度最后还是基于解压在压缩的思路实现的 将生成好的excel文件路径传入该方法即可,如果是基于文件流的可以自己封装zipinputstream > > ```java > public static void easyExcelRepairPic(String excelPath) {...

![image](https://github.com/iced-rs/iced/assets/63085735/b8d42265-2579-4eff-ba3c-5f3befb9b496) The default windows input method can be used normally, but the "Sogou input method" still has problems, and the console will prompt: "libpng warning: iCCP: known incorrect sRGB profile"

Hello, are there any plans to support public key decryption and private key encryption now? Recently, I was doing data interaction with Java. The Standard library of Java provides the...

> @bajie-git is there a specific construction you're interested in? Sorry, my English is not very good. I understand that you are asking me about API design. I hope it...

Here is a simple implementation of using rsa to encrypt the returned data. Only the server saves a private key, and the public key is distributed across different clients. The...

Okay, I understand what you mean, but the private key can be derived from the public key, and the client is not trusted here, so this is also a problem...