正在查看: 管控平台 v5.2.3.0. 应用的 DetectionResultService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: 管控平台 v5.2.3.0. 应用的 DetectionResultService.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package com.iflytek.mdmservice.service;
import android.app.IntentService;
import android.content.Context;
import android.os.Environment;
import android.text.TextUtils;
import com.iflytek.mdmcommon.SpHelper;
import com.iflytek.mdmcommon.Utils;
import java.io.File;
public class DetectionResultService extends IntentService {
public DetectionResultService() {
super("DetectionResultService");
}
private File a(Context context, String str) {
if (TextUtils.isEmpty(str)) {
return null;
}
File file = new File(context.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS).getPath(), "nsfw");
if (!file.exists()) {
file.mkdirs();
}
return new File(file, str);
}
public boolean b() {
return Utils.isToday(SpHelper.getLong("update_nsfw_photo_time", 0L));
}
@Override
protected void onHandleIntent(@androidx.annotation.Nullable android.content.Intent r29) {
throw new UnsupportedOperationException("Method not decompiled: com.iflytek.mdmservice.service.DetectionResultService.onHandleIntent(android.content.Intent):void");
}
}