android 调用Integer.parseInt()报错

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 调用Integer.parseInt()报错相关的知识,希望对你有一定的参考价值。

public class Result extends Activity

TextView resultview;
protected void onCreate(Bundle savedInstanceState)
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.result);

Intent myintent = getIntent();
String num1 = myintent.getStringExtra("result1");
String num2 = myintent.getStringExtra("result2");

int num3 = Integer.parseInt(num1);
int num4 = Integer.parseInt(num2);
//这两行注释掉就可以运行,否则就会force close

int result = num3 * num4;
resultview = (TextView)findViewById(R.id.txt_result);
resultview.setText(""+result);




什么原因???

参考技术A 你可以将这几行
String num1 = myintent.getStringExtra("result1");
String num2 = myintent.getStringExtra("result2");

int num3 = Integer.parseInt(num1);
int num4 = Integer.parseInt(num2);
改成这样:
int num3= Integer.parseInt(myintent.getStringExtra("result1"));
int num4= Integer.parseInt(myintent.getStringExtra("result2")); 试试
参考技术B 不是转换错误,result.setText(cc)中,传入的值如果是int类型的话,它会从资源文件找,改成result.setText(“”+cc)你可以试试本回答被提问者采纳 参考技术C 另一个activity传值的时候传对了吗 参考技术D 那你传入的值肯定是String类型的,不是数字类型的喽

android 调用js,js调用android

 

技术图片

1.main.xml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:orientation="vertical" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    
    <TextView   
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
        android:text="Welcome to Mr Wei‘s Blog." 
        /> 
    <WebView 
        android:id="@+id/webview" 
        android:layout_width="fill_parent"  
        android:layout_height="wrap_content"  
    /> 
    <Button 
        android:id="@+id/button" 
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content" 
        android:text="Change the webview content" 
    /> 
</LinearLayout>

2.demo.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<html
    <mce:script language="javascript"><!-- 
    
        function fillContent() 
            document.getElementById("content").innerHTML =  
                 "This Content is showed by Android invoke Javascript function."; 
         
       
// --></mce:script>   
  <body
    <p><a onClick="window.demo.startMap()" href="">Start GoogleMap</a></p
    <p id="content"></p
    <p>A Demo ----Android and Javascript invoke each other.</p
    <p>Author:Frankiewei</p
  </body
</html>

3.WebViewDemo.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package com.tutor.webwiewdemo;
import android.app.Activity;
import android.content.ComponentName;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.widget.Button;
public class WebViewDemo extends Activity
    private WebView mWebView;
    private Button mButton;
    public void onCreate(Bundle savedInstanceState)
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        setupViews();
    
    //初始化
    private void setupViews()
        mWebView = (WebView) findViewById(R.id.webview);
        WebSettings mWebSettings = mWebView.getSettings();
        //加上这句话才能使用javascript方法
        mWebSettings.setJavaScriptEnabled(true);
        //增加接口方法,让html页面调用
        mWebView.addJavascriptInterface(new Object()
            //这里我定义了一个打开地图应用的方法
            public void startMap()
                Intent mIntent = new Intent();
                ComponentName component = new ComponentName(
                        "com.google.android.apps.maps",
                        "com.google.android.maps.MapsActivity");
                mIntent.setComponent(component);
                startActivity(mIntent);
            
        "demo");
        //加载页面
        mWebView.loadUrl("file:///android_asset/demo.html");
        mButton = (Button) findViewById(R.id.button);
        //给button添加事件响应,执行JavaScript的fillContent()方法
        mButton.setOnClickListener(new Button.OnClickListener()
            public void onClick(View v)
                mWebView.loadUrl("javascript:fillContent()");
            
        );
    

  

技术图片           技术图片

              首界面                                               点击按钮时,html内容改变

 

MainActivity.java

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package com.example.jsdemo;
 
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.webkit.WebSettings;
import android.webkit.WebView;
 
public class MainActivity extends AppCompatActivity
    private WebView wView;
 
    @Override
    protected void onCreate(Bundle savedInstanceState)
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        wView = (WebView) findViewById(R.id.wView);
        wView.loadUrl("file:///android_asset/demo1.html");
        WebSettings webSettings = wView.getSettings();
        //①设置WebView允许调用js
        webSettings.setJavaScriptEnabled(true);
        webSettings.setDefaultTextEncodingName("UTF-8");
        //②设置支持js调用java
        wView.addJavascriptInterface(new AndroidAndJSInterface(),"Android"");
    
 
 class AndroidAndJSInterface
        @JavascriptInterface
        public void showToast()
            Toast.makeText(MainActivity.this"我被js调用了", Toast.LENGTH_SHORT).show();
        
    

注意:解决该WebView.addJavascriptInterface接口不起作用的两种办法

①针对版本改成16

②在JavaScript接口类的方法加上@JavascriptInterface注解

2.JavaScript调用Java对象示例

demo1.html

1
<input type="button" value="点击Android被调用" onclick="window.Android.showToast()" />

 

 

  

以上是关于android 调用Integer.parseInt()报错的主要内容,如果未能解决你的问题,请参考以下文章

Android调用问题

android怎么调用系统服务

Android中调用Unity?

android怎样调用webService

调用 android 自身裁剪功能

Android Service调用流程解析