有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java如何从包含许多元素的对象中提取对象的单个元素

从服务器端,我基本上得到了一个包含各种元素的对象。我需要帮助提取一个元素(sensorID),我非常确定提取sensorID的代码必须做一些更改,因为我使用的是expandableListView。 我已经尝试了下面的代码,但是我得到一个错误

java.lang.ClassCastException: java.lang.String cannot be cast to com.xera.deviceinsight.api.OrganisationDeviceSensorsResult

 private void load(View view)
   {
      final Context context = getContext();
      expListView = (ExpandableListView) view.findViewById(R.id.lvExp);
      prepareListData();
      //listAdapter = new ExpandableListAdapter(this.getActivity(), listDataHeader, listDataChild);
      listAdapter = new com.xera.deviceinsight.home.ExpandableListAdapter(this.getActivity(), listDataHeader, listDataChild);
      expListView.setAdapter(listAdapter);
      expListView.setOnChildClickListener(new ExpandableListView.OnChildClickListener() {
         @Override
         public boolean onChildClick(ExpandableListView parent, View v, int groupPosition, int childPosition, long id) {

            System.err.println("child clicked");
            Toast.makeText(getActivity(), "child clicked", Toast.LENGTH_SHORT).show();
            EventBus.getDefault().post(new ItemClickedEvent(SensorInformationChildFragment.TAB_CALL));
            //ExpandableListAdapter adapter = (ExpandableListAdapter)parent.getAdapter();
            ExpandableListAdapter adapter = (ExpandableListAdapter)parent.getExpandableListAdapter();
            Object sensorData = adapter.getChild(groupPosition , childPosition);
            OrganisationDeviceSensorsResult deviceSensor = (OrganisationDeviceSensorsResult) adapter.getChild(groupPosition , childPosition);
            sensorID = deviceSensor.SensorID;

            ReportingGroup.get(childPosition);
            return true;
         }
      });
   }

我的适配器类

public class ExpandableListAdapter extends BaseExpandableListAdapter  {

   private Context _context;
   private List<String> _listDataHeader; // header titles
   // child data in format of header title, child title
   private HashMap<String, List<String>> _listDataChild;
   public List<OrganisationDeviceSensorsResult> Items;
   List<String> ReportingGroup= new ArrayList<String>();

   public ExpandableListAdapter(Context context, List<String> listDataHeader,
                                HashMap<String, List<String>> listChildData) {
      this._context = context;
      this._listDataHeader = listDataHeader;
      this._listDataChild = listChildData;
   }

   public ExpandableListAdapter(Context context) {
   }

   @Override
   public Object getChild(int groupPosition, int childPosititon) {
      return this._listDataChild.get(this._listDataHeader.get(groupPosition))
            .get(childPosititon);
   }

   @Override
   public long getChildId(int groupPosition, int childPosition) {
      return childPosition;
   }

   public Object getItemAtPosition(int index)
   {
      return getItemAtPosition(index);
      //return this.getItem(index);
     // return this.getChild(index , index2);
      //return this.getItem(index);
      //return index;
      //return this.get
      //return OrganisationDeviceSensorsResult.class;
   }

   @Override
   public View getChildView(int groupPosition, final int childPosition,
                            boolean isLastChild, View convertView, ViewGroup parent) {

      final String childText = (String) getChild(groupPosition, childPosition);
      //OrganisationDeviceSensorsResult deviceSensor = getItemAtPosition(childPosition);
      if (convertView == null) {
         LayoutInflater infalInflater = (LayoutInflater) this._context
               .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
         convertView = infalInflater.inflate(R.layout.list_item, null);
      }

      TextView txtListChild = (TextView) convertView
            .findViewById(R.id.lblListItem);

      txtListChild.setText(childText);
      String  child=(String) getChild(groupPosition, childPosition);
     // int s = deviceSensor.SensorID;
     // Log.i(TAG, "value selected: " + deviceSensor.SensorID);
      return convertView;
   }

   /*private OrganisationDeviceSensorsResult getItemAtPosition(int childPosition) {
   }*/

   @Override
   public int getChildrenCount(int groupPosition) {
      return this._listDataChild.get(this._listDataHeader.get(groupPosition))
            .size();
   }

   @Override
   public Object getGroup(int groupPosition) {
      return this._listDataHeader.get(groupPosition);
   }

   @Override
   public int getGroupCount() {
      return this._listDataHeader.size();
   }

   @Override
   public long getGroupId(int groupPosition) {
      return groupPosition;
   }

   @Override
   public View getGroupView(int groupPosition, boolean isExpanded,
                            View convertView, ViewGroup parent) {
      String headerTitle = (String) getGroup(groupPosition);
      if (convertView == null) {
         LayoutInflater infalInflater = (LayoutInflater) this._context
               .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
         convertView = infalInflater.inflate(R.layout.list_group, null);
      }

      TextView lblListHeader = (TextView) convertView
            .findViewById(R.id.lblListHeader);
      lblListHeader.setTypeface(null, Typeface.BOLD);
      lblListHeader.setText(headerTitle);

      return convertView;
   }

   @Override
   public boolean hasStableIds() {
      return false;
   }

   @Override
   public boolean isChildSelectable(int groupPosition, int childPosition) {
      return true;
   }


   public void get(int groupPosition) {
   }


   /*public int getName() {
      return name;
   }*/
}

共 (2) 个答案

  1. # 1 楼答案

    下面的代码应该避免类强制转换异常。错误看起来是您试图向OrganizationDeviceSensorsResult对象强制转换字符串

    Object obj = adapter.getChild(groupPosition , childPosition);
    
    if(obj instanceof OrganisationDeviceSensorsResult){
    OrganisationDeviceSensorsResult deviceSensor = (OrganisationDeviceSensorsResult)obj;
    sensorID = deviceSensor.SensorID;
    }
    
  2. # 2 楼答案

    编辑:您的_listDataHeader列表和_ListDataChildHashMap属于字符串类型。因此,当您调用getChild时,它返回的是字符串而不是OrganizationDeviceSensorsResult对象


    在看不到适配器类的情况下,我建议更改:

    @Override
    public Object/String getChild(int groupPosition, int childPosition) {
        return this._listDataChild.get(this._listDataHeader.get(groupPosition))
            .get(childPosititon);
    }
    

    @Override
    public OrganisationDeviceSensorsResult getChild(int groupPosition, int childPosition) {
        return this._listDataChild.get(this._listDataHeader.get(groupPosition))
            .get(childPosititon);
    }