ColdFusion cfhttp在上传docx文件时丢失了元数据
我在上传docx文件时遇到问题。 上传并保存到服务器后,它丢失2个字节。 这是我的代码。
<cffunction name="akamaiUpload" access="private" output="false">
<cfargument name="filename" type="string" required="true">
<cfargument name="localpath" type="string" required="true">
<cftry>
<cfhttp url="http://sample.com/#arguments.filename#" method="post">
<cfhttpparam type="file" name="user_file" file="#arguments.localpath#" />
</cfhttp>
<!--- catch any error, return the error message --->
<cfcatch type="any">
<cfreturn #cfcatch.message#>
</cfcatch>
</cftry>
</cffunction>
我发现一些代码有相同的问题,并试图应用他们的解决方案,但仍然无法正常工作。 这是代码。
<cffunction name="akamaiUpload" access="private" output="false">
<cfargument name="filename" type="string" required="true">
<cfargument name="localpath" type="string" required="true">
<cffile action="readbinary" file="#arguments.localpath#" variable="myfile">
<cfset by=CreateObject("java","java.lang.String")>
<cfset by.init(myfile, "iso-8859-1")>
<cfset contentdivider=Hash("this is my divider for this")>
<cfhttp method="POST" url="http://sample.com/#arguments.filename#" charset="iso-8859-1">
<cfhttpparam type="header" name="Content-Type" value="multipart/form-data; boundary=#contentDivider#">
<cfhttpparam type="Header" name="Accept-Encoding" value="deflate;q=0">
<cfhttpparam type="Header" name="TE" value="deflate;q=0">
</cfhttp>
<!--- returning true for successful upload --->
<cfreturn true>
</cffunction>
这里有人遇到同样的问题吗? 请分享一些建议。
链接地址: http://www.djcxy.com/p/5285.html上一篇: ColdFusion cfhttp looses metadata in uploading docx file