如果+ try - catch方法不能正常工作

时间:2013-04-07 12:21:50

标签: java android if-statement methods try-catch

我正在开发一个基于SQLite的应用程序。一切都运行正常,除了我的方法中的if-else语句。保存和东西工作,只是检查给我一个相当高的血压。我希望你们中的一个人比我更聪明,并且发现我可能犯的明显错误:

public void save() {

        // get length of EditText
        int dateLength, mileageLength, amountLength, lpriceLength, tpriceLength;

        dateLength = date_widget.getText().length();
        mileageLength = mileage_widget.getText().length();
        amountLength = amount_widget.getText().length();
        lpriceLength = price_widget.getText().length();
        tpriceLength = totalPrice_widget.getText().length();

        // Start save method if EditTexts are not empty.

        if (dateLength > 0 || mileageLength > 0 || amountLength > 0
                || lpriceLength > 0 || tpriceLength > 0) {

            // Get the value of each EditText and write it into the
            // String/doubles

            String date = date_widget.getText().toString();
            double mileage = Double
                    .valueOf(mileage_widget.getText().toString());
            double amount = Double.valueOf(amount_widget.getText().toString());
            double lprice = Double.valueOf(price_widget.getText().toString());
            double tprice = Double.valueOf(totalPrice_widget.getText()
                    .toString());

            // Check if mileage is increasing, else cancel and show toast
            int checkMileage = Integer.parseInt(db
                    .getSearchResult("mileage", 0));

            if (checkMileage < mileage) {

                try {
                    // if (id == null) {
                    db.insert(date, mileage, amount, lprice, tprice);

                    Toast.makeText(this, R.string.action_input_saved,
                            Toast.LENGTH_SHORT).show();
                    finish();

                } catch (Exception e) {
                    e.printStackTrace();
                    Toast.makeText(this, "ERROR " + e, Toast.LENGTH_LONG)
                            .show();
                }

            } else {
                Toast.makeText(
                        this,
                        "Your current mileage must be more than the last saved mileage",
                        Toast.LENGTH_LONG).show();
            }

        } else {
            Toast.makeText(this, "finish your input", Toast.LENGTH_LONG).show();
        }

    }

DbAdapter类中的我的方法:

public String getSearchResult(String sql, int cmd) {

    if (cmd == 0) {
        String countQuery = "SELECT " + sql + " FROM " + TABLE_NAME
                + " WHERE _id = (SELECT max(_id) FROM " + TABLE_NAME + ")";
        Cursor cursor = db.rawQuery(countQuery, null);
        cursor.moveToFirst();

        String tmp = cursor.getString(0);
        cursor.close();

        // return count
        return tmp;
    } else if (cmd == 1) {
        int sum = 0;
        String countQuery = "SELECT " + sql + " FROM " + TABLE_NAME;
        String idQuery = "SELECT _id FROM " + TABLE_NAME
                + " WHERE _id = (SELECT max(_id) FROM " + TABLE_NAME + ")";
        Cursor cursor = db.rawQuery(countQuery, null);
        Cursor id = db.rawQuery(idQuery, null);
        // berechnung
        cursor.moveToFirst();
        id.moveToFirst();

        int maxId = Integer.parseInt(id.getString(0));
        for (int i = 0; i < maxId; i++) {

            int tmp = Integer.parseInt(cursor.getString(0));
            sum = sum + tmp;
            cursor.moveToNext();
        }
        cursor.close();
        id.close();
        return String.valueOf(sum);
    } else if (cmd == 2 && sql == "mileage") {
        int sum = 0;
        String countQuery = "SELECT " + sql + " FROM " + TABLE_NAME;
        String idQuery = "SELECT _id FROM " + TABLE_NAME
                + " WHERE _id = (SELECT max(_id) FROM " + TABLE_NAME + ")";
        Cursor cursor = db.rawQuery(countQuery, null);
        Cursor id = db.rawQuery(idQuery, null);
        // berechnung
        cursor.moveToFirst();
        id.moveToFirst();

        int maxId = Integer.parseInt(id.getString(0));
        if (maxId > 1) {
            int array[] = new int[maxId];

            // Array füllen
            for (int i = 0; i < maxId; i++) {

                array[i] = Integer.parseInt(cursor.getString(0));
                // sum = sum + tmp;
                cursor.moveToNext();
            }
            for (int k = 1; k < maxId; k++) {
                int tmp;
                tmp = array[k] - array[k - 1];
                sum = sum + tmp;
            }

            cursor.close();
            id.close();
            return String.valueOf(sum);
        } else {
            return "--";
        }

    }
    return "Wrong CMD";

}

我很乱,我知道

1 个答案:

答案 0 :(得分:2)

将评论转化为答案:

将第一个||中的所有&&切换为if。否则,即使只填写了一个字段,您也会尝试处理所有内容。