腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
圈层
工具
MCP广场
文章/答案/技术大牛
搜索
搜索
关闭
发布
文章
问答
(9999+)
视频
沙龙
1
回答
Volley
格式
使用
的
请求
类型
android
、
json
、
android-volley
、
android-networking
我是android
Volley
的
新手。我访问API服务器,它
的
响应是JSON。}, id:2, }]我尝试在截击中
使用
要
使用
的
正确
请求
类型
是什么?如何解析它?
浏览 9
提问于2018-02-24
得票数 0
回答已采纳
3
回答
com.android.
volley
.NoConnectionError: java.net.UnknownHostException
java
、
android
、
android-volley
我得到了下面代码
的
com.android.
volley
.NoConnectionError: java.net.UnknownHostException。token); }我
的
尝试加起来 10-01 23:20:33.913 18856-18856
浏览 4
提问于2016-10-01
得票数 2
2
回答
Volley
-如何发送删除
请求
参数?
android
、
parameters
、
request
、
android-volley
我正在尝试
使用
Volley
向我
的
服务器发送一个DELETE
类型
的
请求
,并向该
请求
添加参数。到目前为止,我还不能做到这一点。创建自定义
请求
并覆盖getParams()方法对我没有帮助,因为不会为DELETE
类型
请求
调用此方法。 如何向
Volley
中
的
DELETE
请求
添加参数?
浏览 2
提问于2014-04-02
得票数 11
回答已采纳
1
回答
如何
使用
volley
库在URLencoded表单中发送特殊字符参数而无需更改
android
、
android-volley
、
special-characters
、
url-encoding
如何
使用
volley
库在URLencoded表单中发送特殊字符参数而无需更改 我必须
使用
volley
库发送数量$1:23数量$2:666
的
URLencoded
格式
的
数据,但由于
Volley
请求
类,它正在对键值
使用
Volley
now时,参数名称被更改,如数量%241:23,这是server.Please不能接受
的
,请帮助我
浏览 4
提问于2018-08-08
得票数 0
1
回答
如何发送POST Json并从服务器获得结果(显示为文本视图)?
java
、
android
、
json
、
post
我是java开发人员
的
初学者,如何从文本视图中
的
JSON POST服务器获得响应?尝试很多来自youtube和其他网站
的
教程/指南,仍然不起作用,一些课程也被废弃了。这里有人帮忙吗?R.id.bt_submit); TextViewResult = findViewById(R.id.text_view_result); 这是我
的
JSON
浏览 2
提问于2022-08-22
得票数 0
2
回答
Post字符串
请求
volley
?
json
、
string
、
http
、
escaping
、
android-volley
我想通过android
volley
将以下字符串POST到服务器并接收一个JSONObject!文档指出,对服务器
的
请求
应采用下面给出
的
格式
,其中"application/x-www-form-urlencoded"为Content-Type。如何
使用
volley
发出此
请求
?
浏览 0
提问于2014-09-21
得票数 2
2
回答
在
Volley
中创建Jackson解析
的
请求
android
、
android-volley
我想在
Volley
中创建一个JacksonJSONRequest实现。与大多数
请求
/响应一样,我
的
请求
/响应将有一个
类型
为X
的
请求
对象和一个
类型
为Y
的
响应对象。
Volley
Request基类将两者定义为相同
的
...... protected Respon
浏览 0
提问于2013-06-27
得票数 4
回答已采纳
1
回答
在Android中显示图像作为REST报头
的
结果
android
、
image
、
rest
、
header
、
android-volley
我
的
REST正在头文件中返回一个图像(‘Content’,' image /png')。映像以二进制
格式
存储在Server中(数据
类型
:图片,以二进制
格式
存储)。API
的
反应是完美的,因为我已经在邮递员。有什么想法吗?EDIT1 这里是我返回映像
的
瘦REST路径。return $response->withH
浏览 5
提问于2020-04-18
得票数 0
回答已采纳
2
回答
如何
使用
volley
发送JSON中
的
POST
请求
和JSON中
的
响应(Android)
android
、
json
、
post
、
android-volley
object to the queue to be executed我得到以下错误: E/
Volley
浏览 6
提问于2016-03-16
得票数 1
1
回答
安卓登录并注册MySQL HTTPS网站
php
、
android
、
mysql
、
https
我
的
网站链接是以https:// myweb.com开头
的
。我已经尝试了很多代码,但我无法通过我
的
应用程序登录。实际上,我想把我
的
android应用程序和我
的
在线网站数据库(MySQL)连接起来。我也尝试过HttpURLConnection语法,但因为我
的
网站
的
协议是https://,所以它不起作用。这是我
的
代码,我想通过我
的
android应用程序注册用户(我在PHP脚本中
使用
浏览 0
提问于2018-04-06
得票数 0
3
回答
如何将edittext值从android传递到java RESTFUL webservice url
java
、
android
我对安卓系统非常陌生,我正在
使用
一个Java RESTful new服务进行登录。 { username = (EditText) fin
浏览 1
提问于2015-07-09
得票数 0
1
回答
使用
Volley
Android库发送XML数据
android
、
xml
、
http
、
post
、
android-volley
我想
使用
Volley
Library向我
的
服务器发出一个简单
的
POST
请求
,
请求
正文中包含XML
格式
的
数据。是否可以
使用
StringRequest来实现这一点?提前感谢!
浏览 7
提问于2015-04-16
得票数 1
3
回答
Google
Volley
vs Android-异步-Http
android
、
android-volley
、
androidhttpclient
、
android-async-http
我想了解一些人
使用
这两个图书馆
的
经验。就我个人而言,我一直很高兴地
使用
库。但最近有人建议我
使用
Volley
框架。我目前
的
用例/规范:
使用
我
的
android应用程序
的
web服务。从web服务接收JSON对象
浏览 1
提问于2014-08-17
得票数 13
1
回答
截击
请求
跟踪
java
、
android
、
android-volley
我正在
使用
volley
库来上传图片,
使用
Restful API,我提出了多次图片上传
请求
,并将这些都添加到RequestQueue中。当
请求
完成时,我想根据
请求
执行本地数据库操作,但是我怎么知道哪一个
请求
完成了? i
浏览 1
提问于2017-04-30
得票数 0
1
回答
如何在android中
使用
volley
发送Json post
请求
?
android
、
json
、
post
、
gson
、
android-volley
我
的
服务器接受JSON
格式
的
Post
请求
,所以我创建了POJO类,我在其中设置数据并
使用
GSON (toJson()方法)将其转换为JSON字符串
浏览 2
提问于2015-05-16
得票数 0
1
回答
使用
Volley
在POST
请求
中发送数组
的
正确方法是什么?
android
、
post
、
request
、
android-volley
当我
使用
Postman时,我
使用
以下
请求
描述从服务器获得正确
的
响应(服务器进程“类别”作为数组): 带有标题: 此
请求
具有以下原始表示:HostPostman-Token: c18f92ee-2f36-f4dd-2963-6bc6d1db0bdf 我
的
问题是如何表示所描述<
浏览 3
提问于2017-04-07
得票数 4
回答已采纳
1
回答
如何
使用
volleyplus库下载文件
android
、
http-post
、
android-volley
我正在
使用
volley
com.android.
volley
:
volley
:1.1.0库来进行正常
的
请求
,并且它工作得很好。现在需要
的
是下载一个pdf文件也。为此,我需要
使用
volleyplus dev.dworks.libs:volleyplus:+ 任务':app:transformDexArchiveWithExternalLibsDexMergerForDebug此外,在代码中找不到
浏览 0
提问于2019-03-01
得票数 1
1
回答
Android
Volley
和AsyncTask
android
、
android-volley
我一直在读到我们在
使用
volley
时不需要
使用
AsyncTask。我有一个问题,我
的
活动中
的
一个按钮点击触发了一个HTTP
请求
。现在,如果我
的
应用程序被关闭,
volley
将仍然能够处理该
请求
。当我再次启动我
的
应用程序时,是否可以判断之前
的
HTTP
请求
是否已发送。 响应会发生什么?我是否能够捕获响应,并可能进行一些数据库更新(本地到应用程序)? 什么是正确
的
设计来做
浏览 9
提问于2021-07-19
得票数 0
回答已采纳
1
回答
如何用截击替换AsyncTask
java
、
android
、
json
这是关于Weatherforecastapp
使用
Volley
..因为我们是android
的
新手,所以我们发现很难实现
Volley
。
浏览 1
提问于2014-01-07
得票数 2
1
回答
HttpMediaTypeNotAcceptableException / HttpMediaTypeNotAcceptableException:找不到可接受
的
表示形式
java
、
spring
、
api
、
spring-mvc
、
controller
我有一个客户端正在尝试连接
的
API。return JsonUtils.createJson(jsonObj);他们
使用
jQuery来
请求
我
的
接口: url: "https://api.mywebsite.comconsole.log("error: " + data.error_description); }问题在于它们
的</
浏览 0
提问于2015-09-22
得票数 1
点击加载更多
热门
标签
更多标签
云服务器
对象存储
ICP备案
云点播
腾讯会议
活动推荐
运营活动
广告
关闭
领券