Oooorchid commented on issue #13703:
URL: https://github.com/apache/arrow/issues/13703#issuecomment-1206117305

   [JAVA]
   At JAVA side,it will return byte[] like this:
   ```
   ......
   
        VectorSchemaRoot root = reader.getVectorSchemaRoot();
        reader.loadRecordBatch(arrowBlock);
        System.out.println(root.contentToTSVString());
    
        ArrowFileWriter writer = new ArrowFileWriter(root, null, 
Channels.newChannel(out));
        writer.start();
        writer.writeBatch();
        writer.end();
        writer.close();
   
        return out.toByteArray();}}
   .....
   
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to