Skip to content

Instantly share code, notes, and snippets.

View enriquegarcia96's full-sized avatar
⚛️
Junnior Developer

Enrique Santos García Romero enriquegarcia96

⚛️
Junnior Developer
View GitHub Profile
@aaronanderson
aaronanderson / ExcelEmeddedFileTest.java
Created December 7, 2019 22:47
Apache POI Excel XSSF Workbook - Embedded File Example
//Simple example of embedding an arbitrary file in Excel using Apache POI mimicing the Office Insert Object functionality.
import java.io.ByteArrayOutputStream;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Paths;
import org.apache.poi.ss.usermodel.ClientAnchor;
import org.apache.poi.ss.usermodel.Drawing;
import org.apache.poi.xssf.usermodel.XSSFObjectData;