ProGuard:ClassCastException
Posted
技术标签:
【中文标题】ProGuard:ClassCastException【英文标题】:ProGuard: ClassCastException 【发布时间】:2015-07-19 05:46:22 【问题描述】:当我混淆我的 Java 代码(在我使用 ProGuard
混淆之前可以正常工作)时,我得到了这个烦人的 ClassCastException
。
java.lang.ClassCastException: com.google.gson.internal.StringMap cannot be cast to net.minecraft.launcher.profile.Profile
at java.lang.ClassCastException: com.google.gson.internal.StringMap cannot be cast to net.minecraft.launcher.profile.Profile
at net.minecraft.launcher.profile.ProfileManager.getSelectedProfile(SourceFile:117)
at net.minecraft.launcher.g.run(SourceFile:184)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
那个 ClastCastException 错误指向这段代码,这里(粗线是确切的行):
public Profile getSelectedProfile()
if ((this.selectedProfile == null) || (!this.profiles.containsKey(this.selectedProfile)))
if (this.profiles.get("Default") != null)
this.selectedProfile = "Default";
else if (this.profiles.size() > 0)
this.selectedProfile = ((Profile)this.profiles.values().iterator().next()).getName();
else
this.selectedProfile = "Default";
this.profiles.put("Default", new Profile(this.selectedProfile));
*Profile profile = this.profiles.get(this.selectedProfile);*
return profile;
整个类文件(未混淆):http://pastebin.com/Jgh4x1SS
RawProfileList
类文件(未混淆):http://pastebin.com/vPxFpYfC
ProGuard
版本:5.2.1
Profiles 字段声明:
private final Map<String, Profile> profiles = new HashMap<String, Profile>();
【问题讨论】:
请向我们展示selectedProfile
和profiles
字段的声明。另外,如果可能的话,请提供一个非混淆和混淆的.class
文件。您使用的是哪个版本的 ProGuard?
添加到帖子底部。整个类文件(未混淆):pastebin.com/Jgh4x1SS ProGuard 版本:5.2.1 配置文件声明字段:private final Mapprofiles
地图中写信?我怀疑 Minecraft 框架中有一些东西使用反射来决定用什么来填充你的地图,并且由于名称已经改变,它与混淆代码的行为不同。
向我们展示RawProfileList
类。
您的proguard.cfg
是否包含these rules?
【参考方案1】:
您的课程看起来不错。 ClassCastException
表示Gson
不知道字段应该被序列化为Profile
。
确保您的proguard.cfg
包含所有these rules。
【讨论】:
以上是关于ProGuard:ClassCastException的主要内容,如果未能解决你的问题,请参考以下文章
proguard.ParseException:proguard.cfg 中的未知选项“-encryptstrings”