当前位置: 首页 > 知识库问答 >
问题:

nosuchmethoderror:没有虚方法getMccString()ljava/lang/string;

华煜祺
2023-03-14

我正在从TelephonyManager检索小区信息数据(CellInfo)

对于每个小区信息对象,我通过以下途径查询mcc(移动国家代码)和mnc(移动网络代码)

eachCellInfo.cellIdentity.mcc
eachCellInfo.cellIdentity.mnc

其中eachCellInfo是CellInfo的对象

根据文档,不推荐使用该函数:

    /**
     * @return 2 or 3-digit Mobile Network Code, 0..999, Integer.MAX_VALUE if unknown
     * @deprecated Use {@link #getMncString} instead.
     */
    @Deprecated
    public int getMnc() {
        return (mMncStr != null) ? Integer.valueOf(mMncStr) : Integer.MAX_VALUE;
    }

但是,当我使用建议的方法通过

    eachCellInfo.cellIdentity.mccString

方法说明:

        /**
         * @return Mobile Country Code in string format, null if unknown
         */
        public String getMccString() {
            return mMccStr;
        }
java.lang.NoSuchMethodError: No virtual method getMccString()Ljava/lang/String; in class Landroid/telephony/CellIdentityLte; or its super classes (declaration of 'android.telephony.CellIdentityLte' appears in /system/framework/framework.jar!classes2.dex)
 )

其他信息:

distributionUrl=https\://services.gradle.org/distributions/gradle-4.10.1-all.zip 
kotlin_version = '1.3.21' 
classpath 'com.google.gms:google-services:4.2.0' 
classpath 'com.android.tools.build:gradle:3.3.1'
Debug Version
minifyEnabled false
shrinkResources false

共有1个答案

邓俊英
2023-03-14

这个方法是在Android API28中引入的--请点击此处--这意味着它将不会在以前的版本中提供。

这将适用于运行API28+的设备,并将在运行较低api级别的设备中抛出该异常。

通常,正确的方法是为版本引入检查:

if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
   // Safe to use getMccString
} else {
   // Use something else that could work if there's something
}

请注意,仅仅因为您可以在您的机器中浏览源代码,并不意味着运行您的应用程序的设备将运行相同的Android代码--大多数情况下并不是这样。

 类似资料: