在Android中将字符串转换为Double

问题描述 投票:0回答:9

尝试从 EditText 获取双精度值并在将它们传递给另一个 Intent 之前对其进行操作。不使用原始数据类型,因此我可以使用 toString 方法。

问题是当我包含 Protein=Double.valueOf(p).doubleValue(); 时样式命令,程序会立即强制关闭,而不在 logcat 中留下任何信息。如果我将它们注释掉并设置一些虚拟数据,例如 Protein = 1.0;它工作没有问题。 原始数据类型和解析双精度也会发生同样的情况。该代码与普通 java 中的虚拟数据完美配合。 我做错了什么?

EditText txtProt, txtCarb, txtFat, txtFiber, txtPoints;
String p, c, f, fi;
Double protein, carbs, fat, fiber;
double temp;
Integer points;

@Override
public void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     Log.v("Create Prompt", "ready for layout");
     setContentView(R.layout.main);
     Log.v("Layout Created", "ready for variable assignment");
     txtProt = (EditText) findViewById(R.id.Protein);
     txtCarb = (EditText) findViewById(R.id.Carbs);
     txtFat = (EditText) findViewById(R.id.Fat);
     txtFiber = (EditText) findViewById(R.id.Fiber);
     txtPoints = (EditText) findViewById(R.id.Points);
     btnCalc = (Button) findViewById(R.id.Calc);
     Log.v("Variables Assigned", "ready for double assignment");

     p = txtProt.getText().toString();
     c = txtCarb.getText().toString();
     f = txtFat.getText().toString();
     fi = txtFiber.getText().toString();


     protein=Double.valueOf(p).doubleValue();
     carbs=Double.valueOf(c).doubleValue();
     fat=Double.valueOf(f).doubleValue();
     fiber=Double.valueOf(fi).doubleValue();
     Log.v("Doubles parsed", "ready for calculations");
     //these are the problem statements

     protein = 1.0;
     carbs = 1.0;
     fat = 1.0;
     fiber = 1.0;

     protein *= 16;
     carbs *= 19;
     fat *= 45;
     fiber *= 14;

     temp = protein + carbs + fat - fiber;
     temp = temp/175;

     points = new Integer((int) temp);
android string double android-edittext
9个回答
79
投票

我会这样做:

try {
  txtProt = (EditText) findViewById(R.id.Protein); // Same
  p = txtProt.getText().toString(); // Same
  protein = Double.parseDouble(p); // Make use of autoboxing.  It's also easier to read.
} catch (NumberFormatException e) {
  // p did not contain a valid double
}

编辑:“程序立即强制关闭,不会在 logcat 中留下任何信息”

我不知道是否要在 logcat 输出中保留信息,但强制关闭通常意味着存在未捕获的异常 - 例如 NumberFormatException。


28
投票

试试这个!

double d= Double.parseDouble(yourString);

5
投票

您似乎将 Double 对象分配到本机 double 值字段中。这真的能编译吗?

Double.valueOf() 创建一个 Double 对象,因此 .doubleValue() 不是必需的。

如果你想要原生 double 字段,你需要将该字段定义为 double 然后使用 .doubleValue()


2
投票

使用 Double(String) 构造函数怎么样?所以,

protein = new Double(p);

不知道为什么会有所不同,但可能值得一试。


2
投票

我也有类似的问题。 为了将 EditText 文本内容正确格式化为双值,我使用以下代码:

try {
        String eAm = etAmount.getText().toString();
        DecimalFormat dF = new DecimalFormat("0.00");
        Number num = dF.parse(eAm);
        mPayContext.amount = num.doubleValue();
    } catch (Exception e) {
        mPayContext.amount = 0.0d;
    }

这与当前电话区域设置无关并返回正确的双精度值。

希望有帮助;


2
投票

我有同样的问题,但我刚刚发现:

  • 在 Oncreate 方法中解析 EditText 值会导致应用程序崩溃,因为应用程序启动时,没有要解析的值,或者可能是字母占位符。

我的代码:

package com.example.herodav.volumeapp;

import android.renderscript.Double2;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.*;
import android.widget.*;

import org.w3c.dom.Text;

public class MainActivity extends AppCompatActivity {

    EditText height, length, depth;
    TextView volume;
    double h,l,d,vol;


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

        height = (EditText)findViewById(R.id.h);
        length = (EditText)findViewById(R.id.l);
        depth = (EditText)findViewById(R.id.d);
        volume = (TextView)findViewById(R.id.v);

        Button btn = (Button)findViewById(R.id.btn);
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                calculateVolume();
                volume.setText("Volume = " + String.valueOf(vol));
            }
        });
    }

    public void calculateVolume(){
        h = Double.parseDouble(height.getText().toString());
        l = Double.parseDouble(length.getText().toString());
        d = Double.parseDouble(depth.getText().toString());
        vol = h*l*d;
    }
}


1
投票
  kw=(EditText)findViewById(R.id.kw);
    btn=(Button)findViewById(R.id.btn);
    cost=(TextView )findViewById(R.id.cost);


            btn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) { cst =  Double.valueOf(kw.getText().toString());
            cst = cst*0.551;
            cost.setText(cst.toString());
        }
    });

0
投票
String sc1="0.0";
Double s1=Double.parseDouble(sc1.toString());

0
投票
double d = Double.parseDouble(aString);

确保变量 aString 仅包含数字。它的开头可能有一个“+”或“-”符号。

我使用了一个包含引号的字符串,但出现了错误。

© www.soinside.com 2019 - 2024. All rights reserved.