@Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.building01);

    Bundle bundle = this.getIntent().getExtras();
    soilid = bundle.getInt("soilid");

    try {

      JSONObject param = new JSONObject();
      param.put("verifycode", AppUtil.verifycode);
      param.put("actioncode", 17);
      this.actioncode = 17;

      requestURL(param.toString(), "building.php");

    } catch (JSONException e) {
      e.printStackTrace();
      AppUtil.button1Dialog(this, "解码JSON字符串失败!");
      release();
    }
  }