我想做的事情如下:
curl -X POST -F "key=myKey&file=@myfile.txt" http://localhost:8080/myRestService/
我在这个领域真的很新,请原谅我的基本问题.
但似乎效果不佳.有什么建议吗?
非常坦克
查看手册页http://curl.haxx.se/docs/manpage.html
If you start the data with the letter @,the rest should be a file
name to read the data from,or – if you want curl to read the data
from stdin. The contents of the file must already be URL-encoded.
Multiple files can also be specifIEd. Posting data from a file named
‘foobar’ would thus be done with –data @foobar.
尝试指定文件的完整路径.
总结以上是内存溢出为你收集整理的web-services – 在一个POST命令中卷曲多个数据全部内容,希望文章能够帮你解决web-services – 在一个POST命令中卷曲多个数据所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)