WebService 类中包含byte[] 类型参数的方法在wsdl2java 生成的stub 类中对应的数据类型不再是byte[] 类型,而是javax.activation.DataHandler 。DataHandler 类是专门用来映射WebService 二进制类型的。
在WebService 类中除了可以使用byte[] 作为传输二进制的数据类型外,也可以使用javax.activation.DataHandler 作为数据类型。 不管是使用byte[] ,还是使用javax.activation.DataHandler 作为WebService 方法的数据类型,使用wsdl2java 命令生成的stub 类中相应方法的类型都是javax.activation.DataHandler 。而象使用.net 、delphi 生成的stub 类的相应方法类型都是byte[] 。这是由于javax.activation.DataHandler 类是Java 特有的,对于其他语言和技术来说,并不认识javax.activation.DataHandler 类,因此,也只有使用最原始的byte[] 了。
下面是一个上传二进制文件的例子,WebService 类的代码如下:
import java.io.InputStream;
import java.io.OutputStream;
import java.io.FileOutputStream;
import javax.activation.DataHandler;
public class FileService
{
// 使用byte[]类型参数上传二进制文件
public boolean uploadWithByte( byte [] file, String filename)
{
FileOutputStream fos = null ;
try
{
fos = new FileOutputStream(filename);
fos.write(file);
fos.close();
}
catch (Exception e)
{
return false ;
}
finally
{
if (fos != null )
{
try
{
fos.close();
}
catch (Exception e)
{
}
}
}
return true ;
}
private void writeInputStreamToFile(InputStream is, OutputStream os) throws Exception
{
int n = 0 ;
byte [] buffer = new byte [ 8192 ];
while ((n = is.read(buffer)) > 0 )
{
os.write(buffer, 0 , n);
}
}
// 使用DataHandler类型参数上传文件
public boolean uploadWithDataHandler(DataHandler file, String filename)
{
FileOutputStream fos = null ;
try
{
fos = new FileOutputStream(filename);
// 可通过DataHandler类的getInputStream方法读取上传数据
writeInputStreamToFile(file.getInputStream(), fos);
fos.close();
}
catch (Exception e)
{
return false ;
}
finally
{
if (fos != null )
{
try
{
fos.close();
}
catch (Exception e)
{
}
}
}
return true ;
}
}
上面代码在services.xml文件的配置代码如下:
< description >
文件服务
</ description >
< parameter name ="ServiceClass" >
service.FileService
</ parameter >
< messageReceivers >
< messageReceiver mep ="http://www.w3.org/2004/08/wsdl/in-out"
class ="org.apache.axis2.rpc.receivers.RPCMessageReceiver" />
</ messageReceivers >
</ service >
如果使用wsdl2java命令生成调用Java客户端代码,则需要创建DataHandler类的对象实例,代码如下:
wsdl2java命令会为每一个方法生成一个封装方法参数的类,类名为方法名(第一个字符大写),如uploadWithByte方法生成的类名为UploadWithByte。如果要设置file参数的值,可以使用UploadWithByte类的setFile方法,代码如下:
uwb.setFile(dh);
最后是调用uploadWithByte方法,代码如下(FileServiceStub为wsdl2java生成的stub类名):
fss.uploadWithByte(uwb);
如果使用C#调用FileService,则file参数类型均为byte[],代码如下:
Bitmap bitmap = new Bitmap(picUpdateImage.Image);
bitmap.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
service.fileService fs = new WSC.service.fileService();
fs.uploadWithDataHandler(ms.ToArray());
fs.uploadWithByte(ms.ToArray());
其中picUpdateImage为c#中加载图像文件的picturebox控件。
http://www.blogjava.net/nokiaguy/archive/2009/01/archive/2009/01/archive/2009/01/archive/2009/01/22/252305.html
本文介绍如何通过WebService传递二进制文件,包括使用byte[]和DataHandler方式,并提供Java及C#客户端示例。
216

被折叠的 条评论
为什么被折叠?



