吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 148|回复: 2
收起左侧

[经验求助] class反编译java如何解决

[复制链接]
pig 发表于 2024-9-13 18:34
25吾爱币
源文件
/*     */ import cn.com.tcsl.dbi.cy7server.product.ProductCache;
/*     */ import cn.com.tcsl.dbi.cy7server.product.ProductUtils;
/*     */ import cn.com.tcsl.dbi.model.Product;
/*     */ import java.util.Date;
/*     */
/*     */ public class ProductCache {
/*     */   private static String date;
/*     */   
/*     */   private static Integer shopId;
/*     */   
/*     */   private static String ipZ3;
/*     */   
/*  28 */   private static int ipMaxPoint = -1;
/*     */   
/*  31 */   private static int ipPoint = -1;
/*     */   
/*     */   private static String key;
/*     */   
/*     */   private static volatile Product product;
/*     */   
/*     */   private static boolean formalExpired;
/*     */   
/*     */   private static boolean onTrialExpired;
/*     */   
/*  48 */   private static Date lastCheckMcDate = null;
/*     */   
/*     */   public static String getDate() {
/*  51 */     return date;
/*     */   }
/*     */   
/*     */   public static void setDate(String date) {
/*  55 */     ProductCache.date = date;
/*     */   }
/*     */   
/*     */   public static String getIpZ3() {
/*  59 */     return ipZ3;
/*     */   }
/*     */   
/*     */   public static void setIpZ3(String ipZ3) {
/*  63 */     ProductCache.ipZ3 = ipZ3;
/*     */   }
/*     */   
/*     */   public static int getIpMaxPoint() {
/*  67 */     return ipMaxPoint;
/*     */   }
/*     */   
/*     */   public static void setIpMaxPoint(int ipMaxPoint) {
/*  71 */     ProductCache.ipMaxPoint = ipMaxPoint;
/*     */   }
/*     */   
/*     */   public static int getIpPoint() {
/*  75 */     return ipPoint;
/*     */   }
/*     */   
/*     */   public static void setIpPoint(int ipPoint) {
/*  79 */     ProductCache.ipPoint = ipPoint;
/*     */   }
/*     */   
/*     */   public static String getKey() {
/*  83 */     return key;
/*     */   }
/*     */   
/*     */   public static void setKey(String key) {
/*  87 */     ProductCache.key = key;
/*     */   }
/*     */   
/*     */   public static Integer getShopId() {
/*  91 */     return shopId;
/*     */   }
/*     */   
/*     */   public static void setShopId(Integer shopId) {
/*  95 */     ProductCache.shopId = shopId;
/*     */   }
/*     */   
/*     */   public static boolean isFormalExpired() {
/*  99 */     return formalExpired;
/*     */   }
/*     */   
/*     */   public static void setFormalExpired(boolean formalExpired) {
/* 103 */     ProductCache.formalExpired = formalExpired;
/*     */   }
/*     */   
/*     */   public static boolean isOnTrialExpired() {
/* 107 */     return onTrialExpired;
/*     */   }
/*     */   
/*     */   public static void setOnTrialExpired(boolean onTrialExpired) {
/* 111 */     ProductCache.onTrialExpired = onTrialExpired;
/*     */   }
/*     */   
/*     */   public static Date getLastCheckMcDate() {
/* 115 */     return lastCheckMcDate;
/*     */   }
/*     */   
/*     */   public static void setLastCheckMcDate(Date lastCheckMcDate) {
/* 119 */     ProductCache.lastCheckMcDate = lastCheckMcDate;
/*     */   }
/*     */   
/*     */   public static synchronized Product getProduct() {
/* 123 */     if (product == null)
/* 124 */       return ProductUtils.errorProduct(product, CYMessageUtil.getMsg("global_msg_product_038"));
/* 127 */     if (product.getId() == null) {
/* 128 */       Integer shopId = ProductUtils.getLocalProductId();
/* 129 */       if (shopId != null)
/* 130 */         product.setId(shopId);
/*     */     }





/* 133 */     return product;
/*     */   }
/*     */   
/*     */   public static synchronized void setProduct(Product product) {
/* 137 */     ProductCache.product = product;
/* 139 */     PluginServiceImpl.additionalListCache = null;
/*     */   }
/*     */ }


/* Location:              C:\Users\Administrator\Desktop\!\Cache.class
* Java compiler version: 7 (51.0)
* JD-Core Version:       1.1.3

-----------------------------------------------------------------------------------------------------------------

反编译文件
/*     */ import cn.com.tcsl.dbi.cy7server.product.ProductCache;
/*     */ import cn.com.tcsl.dbi.cy7server.product.ProductUtils;
/*     */ import cn.com.tcsl.dbi.model.Product;
/*     */ import java.util.Date;
/*     */
/*     */ public class ProductCache {
/*     */   private static String date;
/*     */   
/*     */   private static Integer shopId;
/*     */   
/*     */   private static String ipZ3;
/*     */   
/*  11 */   private static int ipMaxPoint = -1;
/*     */   
/*  12 */   private static int ipPoint = -1;
/*     */   
/*     */   private static String key;
/*     */   
/*     */   private static volatile Product product;
/*     */   
/*     */   private static boolean formalExpired;
/*     */   
/*     */   private static boolean onTrialExpired;
/*     */   
/*  17 */   private static Date lastCheckMcDate = null;
/*     */   
/*     */   public static String getDate() {
/*  23 */     return date;
/*     */   }
/*     */   
/*     */   public static void setDate(String d) {
/*  27 */     date = d;
/*     */   }
/*     */   
/*     */   public static String getIpZ3() {
/*  31 */     return ipZ3;
/*     */   }
/*     */   
/*     */   public static void setIpZ3(String i) {
/*  35 */     ipZ3 = i;
/*     */   }
/*     */   
/*     */   public static int getIpMaxPoint() {
/*  39 */     return 12;
/*     */   }
/*     */   
/*     */   public static void setIpMaxPoint(int i) {
/*  43 */     ipMaxPoint = i;
/*     */   }
/*     */   
/*     */   public static int getIpPoint() {
/*  47 */     return ipPoint;
/*     */   }
/*     */   
/*     */   public static void setIpPoint(int i) {
/*  51 */     ipPoint = i;
/*     */   }
/*     */   
/*     */   public static String getKey() {
/*  55 */     return key;
/*     */   }
/*     */   
/*     */   public static void setKey(String k) {
/*  59 */     key = k;
/*     */   }
/*     */   
/*     */   public static Integer getShopId() {
/*  63 */     return shopId;
/*     */   }
/*     */   
/*     */   public static void setShopId(Integer s) {
/*  67 */     shopId = s;
/*     */   }
/*     */   
/*     */   public static boolean isFormalExpired() {
/*  71 */     return formalExpired;
/*     */   }
/*     */   
/*     */   public static void setFormalExpired(boolean f) {
/*  75 */     formalExpired = f;
/*     */   }
/*     */   
/*     */   public static boolean isOnTrialExpired() {
/*  79 */     return onTrialExpired;
/*     */   }
/*     */   
/*     */   public static void setOnTrialExpired(boolean t) {
/*  83 */     onTrialExpired = t;
/*     */   }
/*     */   
/*     */   public static Date getLastCheckMcDate() {
/*  87 */     return lastCheckMcDate;
/*     */   }
/*     */   
/*     */   public static void setLastCheckMcDate(Date t) {
/*  91 */     lastCheckMcDate = t;
/*     */   }
/*     */   
/*     */   public static synchronized Product getProduct() {
/*  95 */     if (product == null)
/*  96 */       return ProductUtils.errorProduct(product, "鏈姞杞芥巿鏉冧俊鎭紝璇烽噸鏂拌璇 ");
/*  98 */     if (product.getId() == null) {
/*  99 */       Integer shopId = ProductUtils.getLocalProductId();
/* 100 */       if (shopId != null)
/* 101 */         product.setId(shopId);
/*     */     }
/* 105 */     product.setAppMobileNum(Integer.valueOf(12));
/* 106 */     product.setSmartPosNum(Integer.valueOf(12));
/* 107 */     product.setFoodPocketNum(Integer.valueOf(8));
/* 108 */     product.setSmartStreetNum(Integer.valueOf(8));
/* 109 */     product.setAndroidPadNum(Integer.valueOf(8));
/* 110 */     return product;
/*     */   }
/*     */   
/*     */   public static synchronized void setProduct(Product p) {
/* 115 */     product = p;
/*     */   }
/*     */ }


/* Location:              C:\Users\Administrator\Desktop\!\ProductCache.class
* Java compiler version: 7 (51.0)
* JD-Core Version:       1.1.3
*/




最佳答案

查看完整内容

jd-gui的设置里有个unicode字符的选项勾选下试试

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

foreveriuu 发表于 2024-9-13 18:34
jd-gui的设置里有个unicode字符的选项勾选下试试
 楼主| pig 发表于 2024-9-13 18:43
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-12-14 20:44

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表