Java non-static method balabala 的 error

今天遇到了一个奇奇怪怪的error
用 Gson.fromJson() 的时候

non-static method Gson.fromJson() cannot be referenced from a static context

大概是 Gson 或者 Gson.fromJson是一个静态(static)的东西, 不能被我写的非静态方法调用

解决办法是实例化了一个Gson

Gson gson = new Gson();

gson.fromJson();

你可能感兴趣的:(Java non-static method balabala 的 error)