`base64()`在`android.util.base64()`中不公开

时间:2015-12-17 20:21:45

标签: android

我试图使用base64类。

但是我收到了这个错误

`base64()` is not public in `android.util.base64()`. 
 Cannot be accessed from outside package.

以下是我如何使用它:

package com.example.myname.myapp;
//...
import import android.util.Base64;
//...
Base64 base64 = new Base64(); //Here I get the error
//...

1 个答案:

答案 0 :(得分:4)

android.util.Base64没有公共构造函数,因此无法直接实例化。无论如何都不需要创建实例,因为公共API方法都是静态的。