我正在 Java开发一个网络应用程序。 在这项申请中,我在 Java建立了网络服务。 在这一网络服务中,我制作了一个网络方法,以基64格式把图像清单归来。 这种方法的返回类型是Vector。 在网络服务测试器中,I可将SOAP的答复视为xsi:type=”xs:base64Binary
。 然后,我在申请中称之为这一网络方法。 我使用了以下法典:
SBTSWebService webService = null;
List imageArray = null;
List imageList = null;
webService = new SBTSWebService();
imageArray = webService.getSBTSWebPort().getAddvertisementImage();
Iterator itr = imageArray.iterator();
while(itr.hasNext())
{
String img = (String)itr.next();
byte[] bytearray = Base64.decode(img);
BufferedImage imag=ImageIO.read(new ByteArrayInputStream(bytearray));
imageList.add(imag);
}
在这项法典中,我收到了以下错误:
java.lang.ClassCastException: [B cannot be cast to java.lang.String" on line String img = (String)itr.next();
我的法典中是否有任何错误? 或者是否还有其他办法以实际格式塑造形象? 你们能否向我提供我能够解决上述问题的守则或联系?
注:我已经放弃了这一问题,我ug想尝试以下法典:
Object next = iter.next();
System.out.println(next.getClass())
I tried this code and got the output as byte[]
from webservice. but I am not able to convert this byte array to actual image.
is there any other way to bring the image in actual format? Can you provide me the code or link through which I can resolve the above issue?