我是网络服务新手。我从DataHandler的客户端获得响应。 我必须将datahandler的内容写入文件。而且我想知道如何从datahandler中获取字符串数据。
我的节目是
package com.ws.mtom;
import java.io.File;
import java.io.FileOutputStream;
import javax.activation.DataHandler;
import javax.jws.WebService;
@WebService(endpointInterface = "com.ws.mtom.WSInterface")
public class WSImpl implements WSInterface {
@Override
public String writeFile(DataHandler sTr) {
try {
File file = new File("D:\\xml\\efg.xml");
file.createNewFile();
FileOutputStream fop = new FileOutputStream(file);
sTr.writeTo(fop);
} catch (Exception e) {
return "Fail to write content in file";
}
return "Chutiyap hogaya hai.";
}
}
我在文件文件中得到java.io.BufferedReader@28e70e30而不是原始内容。 请帮帮我。
我的客户端程序是
public static void main(String[] args) throws Exception {
URL wsdlUrl = new URL("http://localhost:8087/ws/fileHandling/?wsdl");
QName qname = new QName("http://mtom.ws.com/", "WSImplService");
Service service = Service.create(wsdlUrl, qname);
DataSource ds = new ByteArrayDataSource(getFileContentAsString("D:\\xml\\abc.xml").getBytes(), "text/plain; charset=UTF-8");
DataHandler handler = new DataHandler(ds);
WSInterface intr = service.getPort(WSInterface.class);
String str = intr.writeFile(handler);
}
答案 0 :(得分:1)
试试这个:
FileWriter fw = new FileWriter(file.getAbsoluteFile());
BufferedWriter bw = new BufferedWriter(fw);
//convert your DataHandler to String
String stringToWrite = IOUtils.toString(sTr.getInputStream, "UTF-8");
//Write String to file
bw.write(stringToWrite);