Prezados boa noite,
estou tentando inserir imagem em uma planilha através do apache poi, já vi vários tutoriais testei todos e não estou conseguindo, segue meu código:
public void criar (View view) throws IOException {
String nome = ((String) txtnome.getText().toString());
String foto = ((String) txtstring.getText().toString());
FileInputStream input_document = new FileInputStream(new File("sdcard/projetos/enguelber/formulario.xls"));
HSSFWorkbook my_xls_workbook = new HSSFWorkbook(input_document);
HSSFSheet sheet = my_xls_workbook.getSheetAt(0);
// Nome do cliente
Row row = sheet.getRow(7);
Cell cell = row.getCell(1);
String cliente = ((String) txtcliente.getText().toString());
cell.setCellValue(cliente);
// CPF do cliente
Row row1 = sheet.getRow(7);
Cell cell1 = row.getCell(7);
String cpf = ((String) txtcpf.getText().toString());
cell1.setCellValue(cpf);
// Hora
String hora = new SimpleDateFormat("dd.MM.yyyy HH:mm:ss",
Locale.getDefault()).format(new Date());
Row row2 = sheet.getRow(35);
Cell cell2 = row2.getCell(1);
cell2.setCellValue(hora);
// Foto do relatorio
InputStream inputStream = new FileInputStream("sdcard/projetos/enguelber/fotos/02.03.2016 21.15.27.jpg");
byte[] bytes = IOUtils.toByteArray(inputStream);
int pictureIdx = my_xls_workbook.addPicture(bytes, Workbook.PICTURE_TYPE_PNG);
inputStream.close();
CreationHelper helper = my_xls_workbook.getCreationHelper();
Drawing drawing = sheet.createDrawingPatriarch();
ClientAnchor anchor = helper.createClientAnchor();
anchor.setCol1(1);
anchor.setRow1(2);
Picture pict = drawing.createPicture(anchor, pictureIdx);
pict.resize();
// foto
// Row row3 = sheet.getRow(13);
// Cell cell3 = row3.getCell(1);
// cell3.setCellValue(foto);
input_document.close();
FileOutputStream fileOut = null;
FileOutputStream output_file =new FileOutputStream(new File("sdcard/projetos/enguelber/"+ nome + ".xls"));
my_xls_workbook.write(output_file);
output_file.close();
}
O aplicativo funciona normalmente se eu remover as linhas:
InputStream inputStream = new FileInputStream("sdcard/projetos/enguelber/fotos/02.03.2016 21.15.27.jpg");
byte[] bytes = IOUtils.toByteArray(inputStream);
int pictureIdx = my_xls_workbook.addPicture(bytes, Workbook.PICTURE_TYPE_PNG);
inputStream.close();
CreationHelper helper = my_xls_workbook.getCreationHelper();
Drawing drawing = sheet.createDrawingPatriarch();
ClientAnchor anchor = helper.createClientAnchor();
anchor.setCol1(1);
anchor.setRow1(2);
Picture pict = drawing.createPicture(anchor, pictureIdx);
pict.resize();
LogCat:
- 03-03 19:25:52.478: E/SELinux(22109): selinux_android_seapp_context_reload: Error reading /seapp_contexts, line 16, name levelFrom, value container
- 03-03 19:25:52.478: D/dalvikvm(22109): Late-enabling CheckJNI
- 03-03 19:25:54.608: D/libEGL(22109): loaded /vendor/lib/egl/libEGL_adreno.so
- 03-03 19:25:54.618: D/libEGL(22109): loaded /vendor/lib/egl/libGLESv1_CM_adreno.so
- 03-03 19:25:54.628: D/libEGL(22109): loaded /vendor/lib/egl/libGLESv2_adreno.so
- 03-03 19:25:54.728: I/Adreno-EGL(22109): <qeglDrvAPI_eglInitialize:316>: EGL 1.4 QUALCOMM build: AU_LINUX_ANDROID_JB_3.2_RB3.04.03.00.134.050_msm8610_JB_3.2_RB3__release_AU ()
- 03-03 19:25:54.728: I/Adreno-EGL(22109): OpenGL ES Shader Compiler Version: 20.00.02
- 03-03 19:25:54.728: I/Adreno-EGL(22109): Build Date: 11/12/13 Tue
- 03-03 19:25:54.728: I/Adreno-EGL(22109): Local Branch:
- 03-03 19:25:54.728: I/Adreno-EGL(22109): Remote Branch: quic/jb_3.2_rb3.21
- 03-03 19:25:54.728: I/Adreno-EGL(22109): Local Patches: NONE
- 03-03 19:25:54.728: I/Adreno-EGL(22109): Reconstruct Branch: AU_LINUX_ANDROID_JB_3.2_RB3.04.03.00.134.050 + NOTHING
- 03-03 19:25:54.968: D/OpenGLRenderer(22109): Enabling debug mode 0
- 03-03 19:25:55.488: W/IInputConnectionWrapper(22109): showStatusIcon on inactive InputConnection
- 03-03 19:25:55.488: W/IInputConnectionWrapper(22109): getExtractedText on inactive InputConnection
- 03-03 19:25:55.498: W/IInputConnectionWrapper(22109): getTextBeforeCursor on inactive InputConnection
- 03-03 19:25:55.498: W/IInputConnectionWrapper(22109): getSelectedText on inactive InputConnection
- 03-03 19:25:55.508: W/IInputConnectionWrapper(22109): getTextAfterCursor on inactive InputConnection
- 03-03 19:26:16.138: E/SpannableStringBuilder(22109): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
- 03-03 19:26:16.138: E/SpannableStringBuilder(22109): SPAN_EXCLUSIVE_EXCLUSIVE spans cannot have a zero length
- 03-03 19:26:20.458: D/dalvikvm(22109): GC_FOR_ALLOC freed 235K, 11% free 9609K/10696K, paused 16ms, total 16ms
- 03-03 19:26:20.508: D/dalvikvm(22109): GC_FOR_ALLOC freed 11K, 9% free 10065K/10972K, paused 13ms, total 13ms
- 03-03 19:26:20.548: D/dalvikvm(22109): GC_FOR_ALLOC freed 9K, 8% free 10538K/11428K, paused 13ms, total 13ms
- 03-03 19:26:20.798: D/dalvikvm(22109): GC_FOR_ALLOC freed 735K, 13% free 11182K/12776K, paused 17ms, total 17ms
- 03-03 19:26:21.118: W/dalvikvm(22109): Exception Ljava/lang/RuntimeException; thrown while initializing Lorg/apache/poi/ddf/DefaultEscherRecordFactory;
- 03-03 19:26:21.118: D/AndroidRuntime(22109): Shutting down VM
- 03-03 19:26:21.118: W/dalvikvm(22109): threadid=1: thread exiting with uncaught exception (group=0x41d23898)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): FATAL EXCEPTION: main
- 03-03 19:26:21.138: E/AndroidRuntime(22109): java.lang.IllegalStateException: Could not execute method of the activity
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.view.View$1.onClick(View.java:3839)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.view.View.performClick(View.java:4476)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.view.View$PerformClick.run(View.java:18795)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.os.Handler.handleCallback(Handler.java:730)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.os.Handler.dispatchMessage(Handler.java:92)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.os.Looper.loop(Looper.java:176)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.app.ActivityThread.main(ActivityThread.java:5493)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at java.lang.reflect.Method.invokeNative(Native Method)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at java.lang.reflect.Method.invoke(Method.java:525)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1225)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1041)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at dalvik.system.NativeStart.main(Native Method)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): Caused by: java.lang.reflect.InvocationTargetException
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at java.lang.reflect.Method.invokeNative(Native Method)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at java.lang.reflect.Method.invoke(Method.java:525)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at android.view.View$1.onClick(View.java:3834)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): … 11 more
- 03-03 19:26:21.138: E/AndroidRuntime(22109): Caused by: java.lang.ExceptionInInitializerError
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.hssf.record.AbstractEscherHolderRecord.convertToEscherRecords(AbstractEscherHolderRecord.java:78)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.hssf.record.AbstractEscherHolderRecord.convertRawBytesToEscherRecords(AbstractEscherHolderRecord.java:73)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.hssf.record.DrawingGroupRecord.processChildRecords(DrawingGroupRecord.java:79)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.hssf.model.InternalWorkbook.findDrawingGroup(InternalWorkbook.java:2051)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.hssf.usermodel.HSSFWorkbook.initDrawings(HSSFWorkbook.java:1588)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.hssf.usermodel.HSSFWorkbook.addPicture(HSSFWorkbook.java:1608)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at pro.kondratev.androidreadxlsx.ReadXlsx.criar(ReadXlsx.java:136)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): … 14 more
- 03-03 19:26:21.138: E/AndroidRuntime(22109): Caused by: java.lang.RuntimeException: java.lang.NoSuchFieldException: RECORD_ID
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.ddf.DefaultEscherRecordFactory.recordsToMap(DefaultEscherRecordFactory.java:135)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.ddf.DefaultEscherRecordFactory.(DefaultEscherRecordFactory.java:42)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): … 21 more
- 03-03 19:26:21.138: E/AndroidRuntime(22109): Caused by: java.lang.NoSuchFieldException: RECORD_ID
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at java.lang.Class.getField(Class.java:673)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): at org.apache.poi.ddf.DefaultEscherRecordFactory.recordsToMap(DefaultEscherRecordFactory.java:129)
- 03-03 19:26:21.138: E/AndroidRuntime(22109): … 22 more