在Android上将字符串转换为整数

问题描述 投票:166回答:13

如何将字符串转换为整数?

我有一个文本框我让用户输入一个数字:

EditText et = (EditText) findViewById(R.id.entry1);
String hello = et.getText().toString();

并将值分配给字符串hello

我想将它转换为整数,这样我就可以得到他们输入的数字;它将在稍后的代码中使用。

有没有办法让EditText成为整数?那会跳过中间人。如果没有,字符串到整数就可以了。

java android string integer android-edittext
13个回答
396
投票

请参阅Integer类和静态parseInt()方法:

http://developer.android.com/reference/java/lang/Integer.html

Integer.parseInt(et.getText().toString());

在解析时遇到问题时,您需要捕获NumberFormatException,因此:

int myNum = 0;

try {
    myNum = Integer.parseInt(et.getText().toString());
} catch(NumberFormatException nfe) {
   System.out.println("Could not parse " + nfe);
} 

3
投票

你也可以做一行:

int hello = Integer.parseInt(((Button)findViewById(R.id.button1)).getText().toString().replaceAll("[\\D]", ""));

阅读执行顺序

  1. 使用findViewById(R.id.button1)抓住视图
  2. 使用((Button)______)View作为Button
  3. 调用.GetText()从Button获取文本条目
  4. 调用.toString()将Character Varying转换为String
  5. .ReplaceAll()调用"[\\D]"用“”替换所有非数字字符(无)
  6. 调用Integer.parseInt()抓取并从仅数字字符串中返回一个整数。

2
投票

更简单的方法是使用decodeInteger方法,例如:

int helloInt = Integer.decode(hello);

1
投票

Kotlin

有可用的扩展方法将它们解析为其他基本类型。

Java

String num = "10";
Integer.parseInt(num );

1
投票

转换第一条道路有五种方法:

String str = " 123" ;
int i = Integer.parse(str); 
output : 123

第二种方式:

String str = "hello123world";
int i = Integer.parse(str.replaceAll("[\\D]" , "" ) );
output : 123

第三种方式:

String str"123";
int i = new Integer(str);
output "123 

第四种方式:

String str"123";
int i = Integer.valueOf(Str);
output "123 

第五种方式:

String str"123";
int i = Integer.decode(str);
output "123 

可能有其他方式但这就是我现在所记得的


41
投票
int in = Integer.valueOf(et.getText().toString());
//or
int in2 = new Integer(et.getText().toString());

24
投票

使用正则表达式:

String s="your1string2contain3with4number";
int i=Integer.parseInt(s.replaceAll("[\\D]", ""));

输出:i = 1234;

如果您需要第一个数字组合,那么您应该尝试以下代码:

String s="abc123xyz456";
int i=NumberFormat.getInstance().parse(s).intValue();

输出:i = 123;


11
投票

使用正则表达式:

int i=Integer.parseInt("hello123".replaceAll("[\\D]",""));
int j=Integer.parseInt("123hello".replaceAll("[\\D]",""));
int k=Integer.parseInt("1h2el3lo".replaceAll("[\\D]",""));

输出:

i=123;
j=123;
k=123;

8
投票

使用正则表达式是ashish sahu已经提到过的最好的方法

public int getInt(String s){
return Integer.parseInt(s.replaceAll("[\\D]", ""));
}

7
投票

试试这个代码它确实有效。

int number = 0;
try {
    number = Integer.parseInt(YourEditTextName.getText().toString());
} catch(NumberFormatException e) {
   System.out.println("parse value is not valid : " + e);
} 

5
投票

将字符串转换为int的最佳方法是:

 EditText et = (EditText) findViewById(R.id.entry1);
 String hello = et.getText().toString();
 int converted=Integer.parseInt(hello);

4
投票

您应该将String转换为float。这是工作。

float result = 0;
 if (TextUtils.isEmpty(et.getText().toString()) {
  return;
}

result = Float.parseFloat(et.getText().toString());

tv.setText(result); 

4
投票

您可以使用以下内容将字符串解析为整数:

int value = Integer.parseInt(textView.getText()。toString());

(1)输入:12然后它将起作用..因为textview将这12个数字作为“12”字符串。

(2)输入:“abdul”然后它会抛出一个NumberFormatException异常。所以要解决这个问题,我需要使用try catch,如下所述:

  int tax_amount=20;
  EditText edit=(EditText)findViewById(R.id.editText1);
     try
       {

        int value=Integer.parseInt(edit.getText().toString());
        value=value+tax_amount;
        edit.setText(String.valueOf(value));// to convert integer to string 

       }catch(NumberFormatException ee){
       Log.e(ee.toString());
       }

您可能还需要参考以下链接以获取更多信息:http://developer.android.com/reference/java/lang/Integer.html

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