android - 上传文件时发送参数

发布于 2024-10-22 03:14:45 字数 227 浏览 3 评论 0原文

我有这段代码 http://pastebin.com/VrMNuxcv 它成功地将文件从我的 android 上传到服务器。

不过,我希望能够随它一起发送几个字符串参数。

如果可能的话,您能否告诉我,我到底需要在那段代码中的哪里执行此操作以及如何执行此操作?

谢谢 安德烈亚斯

I've got this piece of code http://pastebin.com/VrMNuxcv
which successfully uploads a file onto the server from my android.

I'd like to , however to be able to send a couple of string parameters together with it.

Could you please tell me, if possible, where exactly I need to do this in that piece of code and how?

Thanks
Andreas

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月流歌 2024-10-29 03:14:45

我假设您可以控制服务器如何处理上传,即您也编写了服务器代码???

如果是这样,我只需对我编写的某些客户端/服务器代码使用自定义/私有请求属性(即前缀 x-)。例子...

conn.setRequestProperty("x-myapp-param1", "Parameter 1 text");

对你有什么用吗?

I assume that you're in control of how the server processes the upload, i.e., you wrote the server code too???

If so, I simply use custom/private request properties (i.e., prefixed x-) for some client/server code I've written. Example...

conn.setRequestProperty("x-myapp-param1", "Parameter 1 text");

Any use to you?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文