我的 servlet 中有一个 xml 文件内容作为字符串,我需要使用多部分发布请求调用另一个 URL 以将其上传为 xml 文件。
有没有办法可以做到?
到目前为止,这就是我正在做的
private def createConfiguration(def sessiontoken)
{
/*reqParams is request.getParameterMap(), fileParams is again a map*/
def charset = "UTF-8";
def query = String.format("emailaddress=%s&projectid=%s&cfgname=%s&cfgdesc=%s&cfgfile=%s",
URLEncoder.encode(sessiontoken, charset),
URLEncoder.encode(reqParams.c_Cfgname[0], charset),
URLEncoder.encode(reqParams.c_Cfgdesc[0], charset),
URLEncoder.encode(reqParams.c_Cfgtype[0], charset),
URLEncoder.encode(reqParams.CFGFILE[0], charset),)
URLConnection connection = new URL(fileParams.login).openConnection()
connection.setDoOutput(true)
connection.setRequestProperty("Accept-Charset", charset)
connection.setRequestProperty("Content-Type", "multipart/form-data;charset=" + charset)
try {
connection.getOutputStream().write(query.getBytes(charset))
}
finally {
connection.getOutputStream().close()
}
InputStream response = connection.getInputStream()
def xmlString=response.getText()
xmlString
}
下面是获取的异常
严重:Servlet RedirectRequest 的 Servlet.service() 引发异常 java.io.IOException:服务器返回 HTTP 响应代码:URL 为 800:http://abhishek157:10070/project/create.action
在 sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source) at sun.net .www.protocol.http.HttpURLConnection$getInputStream.call(Unknown Source) 。.
更新
BalusC得到了这个非常有用的链接,所以我使用了它。
private def getStreamFromString(str)
{
// convert String into InputStream
InputStream is = new ByteArrayInputStream(str.getBytes())
is
}
private def createConfiguration(def sessiontoken)
{
println "ok good $sessiontoken"
def charset = "UTF-8"
def boundary = Long.toHexString(System.currentTimeMillis())
def CRLF = "\r\n"
String param = "value"
URLConnection connection = new URL(fileParams.create).openConnection()
println fileParams.create
connection.setDoOutput(true)
connection.setRequestProperty("Content-Type", "multipart/form-data; boundary=" + boundary);
PrintWriter writer = null
try {
OutputStream output = connection.getOutputStream()
writer = new PrintWriter(new OutputStreamWriter(output, charset), true)
// Sending normal param.
writer.append("--" + boundary).append(CRLF)
writer.append("Content-Disposition: form-data; name=\"sessiontoken\"$CRLF$CRLF$sessiontoken").append(CRLF)
//writer.append("Content-Type: text/plain; charset=" + charset).append(CRLF)
writer.append(CRLF)
writer.append(param).append(CRLF).flush()
writer.append("--" + boundary).append(CRLF)
writer.append("Content-Disposition: form-data; name=\"cfgname\"$CRLF$CRLF${reqParams.c_Cfgname[0]}").append(CRLF)
//writer.append("Content-Type: text/plain; charset=" + charset).append(CRLF)
writer.append(CRLF)
writer.append(param).append(CRLF).flush()
writer.append("--" + boundary).append(CRLF)
writer.append("Content-Disposition: form-data; name=\"cfgdesc\"$CRLF$CRLF${reqParams.c_Cfgdesc[0]}").append(CRLF)
//writer.append("Content-Type: text/plain; charset=" + charset).append(CRLF)
writer.append(CRLF)
writer.append(param).append(CRLF).flush()
writer.append("--" + boundary).append(CRLF)
writer.append("Content-Disposition: form-data; name=\"cfgenv\"$CRLF$CRLF${reqParams.c_Cfgtype[0]}").append(CRLF)
//writer.append("Content-Type: text/plain; charset=" + charset).append(CRLF)
writer.append(CRLF)
writer.append(param).append(CRLF).flush()
// Sending xml file.
writer.append("--" + boundary).append(CRLF)
writer.append("Content-Disposition: form-data; name=\"cfgfile\"; filename=\"" + reqParams.FILENAME[0] + "\"").append(CRLF)
writer.append("Content-Type: text/xml; charset=" + charset).append(CRLF)
writer.append(CRLF).flush()
BufferedReader reader = null
try {
reader = new BufferedReader(new InputStreamReader(getStreamFromString(reqParams.CFGFILE[0]), charset))
for (String line; (line = reader.readLine()) != null;) {
writer.append(line).append(CRLF)
}
}
catch(Exception e) {
e.printStackTrace()
}
finally {
if (reader != null) try { reader.close(); } catch (IOException logOrIgnore) {}
}
writer.flush();
writer.append("--" + boundary + "--").append(CRLF)
}
finally {
if (writer != null) writer.close();
}
InputStream response = connection.getInputStream()
def xmlString=response.getText()
xmlString
}
在控制台上我得到
http://abhishek157:10070/project/create.action
完成
但它根本没有击中http://abhishek157:10070/project/create.action
有什么帮助吗?
更多更新
真正的请求(从 html 表单工作,我从网络浏览器中选择文件)
-----------------------------7dcf4d30e8a
Content-Disposition: form-data; name="sessiontoken"
4611685684744086913
-----------------------------7dcf4d30e8a
Content-Disposition: form-data; name="cfgname"
sadf
-----------------------------7dcf4d30e8a
Content-Disposition: form-data; name="cfgdesc"
sadf
-----------------------------7dcf4d30e8a
Content-Disposition: form-data; name="cfgenv"
Production
-----------------------------7dcf4d30e8a
Content-Disposition: form-data; name="cfgfile"; filename="C:\Simon\xmls\agentind.xml"
Content-Type: text/xml
<?xml version="1.0" encoding="UTF-8"?> and so on...
与 fiddler 中的实际请求匹配后更新了 params 部分。查看createConfiguration
功能
获取异常(create.action
从 servlet 调用时)
注意:我在发送参数之前检查了servlet create.action
,所有都是有效的
java.lang.NumberFormatException: null
服务器中没有读取任何参数,所有参数都以null
. 哪里有问题。请帮忙。