0

我试图将 3 字节数组组合成一个单独的数组来生成报告。

byte[] bArray=null;
ByteArrayOutputStream outputStream = new ByteArrayOutputStream( );

for(int i=0;i<3;i++)
{
//Other stuff
bArray = getTheReportContent(); //The return type of this method is List<byte[]> 
outputStream.write(bArray);
} 

byte bArrayCombined[] = outputStream.toByteArray( );  //Checked the count. bArrayCombined.length=sum of all the 3 bArray

response.setContentLength((int) bArrayCombined.length);
outStream.write(bArrayCombined, 0, bArrayCombined.length);
outStream.flush();

当我将其写入报告时,内容与预期不符。它只显示第一个bArray内容。我在这里出错的地方。

编辑:

执行getTheReportContent以下操作:

使用 jasper 导出报告。并返回 byteArrList。

 List byteArrList = new ArrayList();
 --------
 exporterXLS.exportReport();
 byteArrList.add(outputStream.toByteArray());
4

1 回答 1

0

您正在将 List 分配给 byte[] - 这是不可能的。所以我相信你可能没有粘贴完整的代码。

尝试了您的代码,结果长度是正确的。您可以检查以下课程。所以我认为问题可能出在接收部分。让我知道

public static void main(String[] args) {
    byte[] bArray=null;
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream( );

    for(int i=0;i<3;i++)
    {
        try {
            //Other stuff
            bArray = getTheReportContent(); //The return type of this method is List<byte[]> 
            outputStream.write(bArray);
        } catch (IOException e) {
            e.printStackTrace();
        }
    } 

    byte bArrayCombined[] = outputStream.toByteArray( );  //Checked the count. bArrayCombined.length=sum of all the 3 bArray
    System.out.println("Size is " + bArrayCombined.length);

    ByteArrayOutputStream outStream = new ByteArrayOutputStream( );
    outStream.write(bArrayCombined, 0, bArrayCombined.length);

    System.out.println("new outStream size is " + outStream.toByteArray().length);

}

private static byte[] getTheReportContent() {
    return "123".getBytes();
}
于 2014-11-26T12:24:22.740 回答