为了账号安全,请及时绑定邮箱和手机立即绑定

请教,在eclipse中为什么faces.getJSONObject();里面只能传入String类型的参数 无法传入int型的参数??



http://img1.sycdn.imooc.com//564bd86c000149a705270467.jpg

这个问题我不太懂,求解答???

正在回答

1 回答

private void prepareRsBitmap(JSONObject rs) {
			// TODO Auto-generated method stub
			try {
				JSONArray faces = rs.getJSONArray("face");
				/**
				 * 找到多少张脸,并在mTip中显示出来
				 */
				int faceCount = faces.length();
				mTipTextView.setText("find" + faceCount +"faces");
				
				/**
				 * 循环得到每一张脸,
				 */
				for(int i = 0 ;i < faceCount; i++){
					/**
					 * getJSONObject()只能传入String类型的参数 ,无法传入int类型的参数
					 */
					JSONObject face = faces.getJSONObject(i);
					/**
					 * 拿到position属性
					 */
					JSONObject posObject = face.getJSONObject("position");
					
					double x = posObject.getJSONObject("center").getDouble("x");
					double y = posObject.getJSONObject("center").getDouble("y");
				}
			} catch (JSONException e) {
				// TODO Auto-generated catch block
				e.printStackTrace();
			}
		}

我错了 回头百度了JSAON才发现得到脸的数目需要用到JSONArray()..而解析脸的内部属性的时候需要用到JSONObject()...................

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
How-old 刷脸神器
  • 参与学习       31545    人
  • 解答问题       155    个

通过第三方本课程教大家实现人脸识别,通过案例讲解原理

进入课程

请教,在eclipse中为什么faces.getJSONObject();里面只能传入String类型的参数 无法传入int型的参数??

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信