private Files getFileByMd5(String md5) { // 查询文件的md5是否存在 QueryWrapper<Files> queryWrapper = new QueryWrapper<>(); queryWrapper.eq("md5", md5); List<Files> filesList = fileMapper.selectList(queryWrapper); return filesList.size() == 0 ? null : filesList.get(0); }

时间: 2023-06-20 21:07:25 浏览: 104
ZIP

MD5Checker 查看文件md5文件

star5星 · 资源好评率100%
这段代码是用来查询数据库中是否已经存在某个文件的MD5值的记录。首先创建了一个QueryWrapper对象,用于构建查询条件;然后通过eq方法将查询条件设置为md5等于传入的参数md5;最后调用selectList方法执行查询,将结果保存在filesList列表中。如果filesList的长度为0,则说明该MD5值不存在对应的文件记录,返回null;否则返回第一个文件记录。
阅读全文

相关推荐

以下代码存在读取文件乱码的情况请给与优化 public static void main(String[] args) { String sourceDirectory = "D:\Java\pas\trunk-5.X+\D05源代码\后台\达梦"; String destinationFile = "D:\Java\project\demo\src\main\resources\dm-init.sql"; try { // 创建输出文件,如果文件不存在则自动创建 File file = new File(destinationFile); if (!file.exists()) { file.createNewFile(); } // 打开输出流 FileWriter fw = new FileWriter(file.getAbsoluteFile(), true); BufferedWriter bw = new BufferedWriter(fw); // 递归读取源目录中的文件,并将其写入输出文件 readAndWriteFiles(sourceDirectory, bw); // 关闭输出流 bw.close(); System.out.println("文件已写入 " + destinationFile); } catch (IOException e) { e.printStackTrace(); } } private static void readAndWriteFiles(String sourceDirectory, BufferedWriter writer) throws IOException { // 创建目录文件对象 File directory = new File(sourceDirectory); // 检查目录是否存在并且是一个目录 if (!directory.exists() || !directory.isDirectory()) { throw new FileNotFoundException("目录不存在: " + sourceDirectory); } // 列出该目录下的所有文件和子目录,包括隐藏文件 File[] files = directory.listFiles(new FileFilter() { @Override public boolean accept(File pathname) { return pathname.isFile() && (pathname.getName().endsWith(".sql") || pathname.getName().endsWith(".txt")); } }); // 遍历文件列表 for (File file : files) { // 读取文件内容并写入输出文件 BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), "GBK")); String line = null; while ((line = br.readLine()) != null) { writer.write(line); writer.newLine(); } br.close(); } // 遍历目录中的子目录并递归读取 File[] subDirectories = directory.listFiles(new FileFilter() { @Override public boolean accept(File pathname) { return pathname.isDirectory() && !pathname.isHidden(); } }); for (File subDirectory : subDirectories) { readAndWriteFiles(subDirectory.getAbsolutePath(), writer); } }

下面代码中FaceClient 报错,using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;using System.Text;using System.Threading.Tasks;using System.Windows.Forms;using Baidu.Aip.Face;namespace 图片人脸识别系统{ public partial class Form1 : Form { // 百度AI的API Key和Secret Key private const string API_KEY = "2vQEURKj9cllcV5U0jNllTWj"; private const string SECRET_KEY = "GYOyjSqZbuj8jLm7CGMAQrAVoLCcnRP2"; // 图片和人脸识别客户端 private readonly FaceClient faceClient; private readonly Ocr client; public Form1() { InitializeComponent(); // 初始化百度AI客户端 faceClient = new FaceClient(API_KEY, SECRET_KEY); client = new Baidu.Aip.Ocr.Ocr(API_KEY, SECRET_KEY); } private void button1_Click(object sender, EventArgs e) { // 加载图片 string imagePath = @"C:\Users\王宇航\Desktop\123.png"; byte[] imageData = File.ReadAllBytes(imagePath); // 人脸识别 var options = new Dictionary<string, object>{ {"face_field", "age,beauty,expression,gender,glasses,landmark,race,quality"}, {"max_face_num", 10}, {"face_type", "LIVE"} }; var result = faceClient.FaceDetect(imageData, options); // 显示结果 string bestMatch = ""; float bestScore = 0; foreach (var face in result["result"]) { float score = float.Parse(face["face_probability"].ToString()); if (score > bestScore) { bestScore = score; bestMatch = face["face_token"].ToString(); } } string folderPath = @"C:\Users\王宇航\Desktop\123"; string[] files = Directory.GetFiles(folderPath); string bestMatchName = ""; float bestMatchScore = 0; foreach (string file in files) { byte[] fileData = File.ReadAllBytes(file); var options2 = new Dictionary<string, object>{ {"face_token1", bestMatch}, {"image", Convert.ToBase64String(fileData)} }; var result2 = faceClient.FaceMatch(options2); float score = float.Parse(result2["result"]["score"].ToString()); if (score > bestMatchScore) { bestMatchScore = score; bestMatchName = Path.GetFileName(file); } } label1.Text = bestMatchName; } }}

class SR_net { public: SR_net(string path, vector<int> input_size, bool fp32, bool cuda = true); private: vector<int64_t> Gdims; int Gfp32; Env env = Env(ORT_LOGGING_LEVEL_ERROR, "RRDB"); SessionOptions session_options = SessionOptions(); Session* Gsession = nullptr; vector<const char*> Ginput_names; vector<const char*> Goutput_names; vector<int> Ginput_size = {}; }; SR_net::SR_net(string path, vector<int> input_size, bool fp32, bool cuda) { this->Ginput_size = input_size; this->Gfp32 = fp32; clock_t startTime_, endTime_; startTime_ = clock(); session_options.SetIntraOpNumThreads(6); if (cuda) { OrtCUDAProviderOptions cuda_option; cuda_option.device_id = 0; cuda_option.arena_extend_strategy = 0; cuda_option.cudnn_conv_algo_search = OrtCudnnConvAlgoSearchExhaustive; cuda_option.gpu_mem_limit = SIZE_MAX; cuda_option.do_copy_in_default_stream = 1; session_options.AppendExecutionProvider_CUDA(cuda_option); } wstring widestr = wstring(path.begin(), path.end()); this->Gsession = new Session(env, widestr.c_str(), this->session_options); this->session_options.SetGraphOptimizationLevel(GraphOptimizationLevel::ORT_ENABLE_ALL); AllocatorWithDefaultOptions allocator; this->Ginput_names = { "input" }; this->Goutput_names = { "output" }; endTime_ = clock(); cout << " The model loading time is:" << (double)(endTime_ - startTime_) / CLOCKS_PER_SEC << "s" << endl; } int main() { vector<int> input_shape = {}; SR_net net("E:/prj/SR_C/onnx_file/rrdb_full.onnx", input_shape, true, true); vector<String> files; glob("E:/prj/超分样本/1", files, true); size_t num = files.size(); bool Moos = true; cout << "共读取了" << num << "张图片" << endl; cout << "--------------------------------" << endl; for (int i = 0; i < num; i++) { Mat srcimg = imread(files[i]); Mat SR_image = net.Detect(srcimg, Moos); imshow("input", srcimg); imshow("result", SR_image); imwrite("./output/" + to_string(i + 1) + ".png", SR_image); waitKey(0); } },在这段代码中,我如何把SR_net net("E:/prj/SR_C/onnx_file/rrdb_full.onnx", input_shape, true, true);这一行写到主函数的外面?

//添加监听事件 bFIle.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { chooseFile(); readFile(); saveLog("读取文件成功!\r\n________________________\r\n"); showAll(allQue); } }); //开始按钮事件 bStart.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { if (allQue.size()==0) { JOptionPane.showMessageDialog(null, "Finish","请重新选择文件!",JOptionPane.INFORMATION_MESSAGE); return; } if (boolTTime()) { initQue(); startRun(); } } }); //暂停按钮事件 bStop.addActionListener(new ActionListener() { @Override public void actionPerformed(ActionEvent e) { bStart.setText("继续调度"); blinker = null; } }); private void chooseFile() { FileNameExtensionFilter filter = new FileNameExtensionFilter("*.txt", "txt"); JFileChooser jfc = new JFileChooser(".");//当前目录下 jfc.setFileFilter(filter); jfc.setMultiSelectionEnabled(false); jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES); int result = jfc.showSaveDialog(null); if (result == JFileChooser.APPROVE_OPTION) { file = jfc.getSelectedFile(); } } //读取文件并生成进程队列 private void readFile() { if (file != null) { try { BufferedReader in = new BufferedReader(new FileReader(file)); String str; allQue.clear(); PCB pcb = null; while ((str = in.readLine()) != null) { if (str.charAt(0) == 'P') { pcb = new PCB(); pcb.setpName(str); } else { Instructions instructions = new Instructions(); instructions.setIName(str.charAt(0)); instructions.setIRuntime(parseDouble(str.substring(1))); instructions.setIRemainTime(instructions.getIRuntime()); assert pcb != null; pcb.getpInstructions().add(instructions); if (instructions.getIName() == 'H') { //H代表当前进程结束,添加到就绪队列 allQue.add(pcb); } } } } catch (IOException e) { System.out.println("文件读取错误!"); } } }解释该段代码并添加注释

private void updateShowSeconds() { if (mShowSeconds) { // Wait until we have a display to start trying to show seconds. if (mSecondsHandler == null && getDisplay() != null) { mSecondsHandler = new Handler(); if (getDisplay().getState() == Display.STATE_ON) { mSecondsHandler.postAtTime(mSecondTick, SystemClock.uptimeMillis() / 1000 * 1000 + 1000); } IntentFilter filter = new IntentFilter(Intent.ACTION_SCREEN_OFF); filter.addAction(Intent.ACTION_SCREEN_ON); mContext.registerReceiver(mScreenReceiver, filter); } } else { if (mSecondsHandler != null) { mContext.unregisterReceiver(mScreenReceiver); mSecondsHandler.removeCallbacks(mSecondTick); mSecondsHandler = null; updateClock(); } } } private final BroadcastReceiver mScreenReceiver = new BroadcastReceiver() { @Override public void onReceive(Context context, Intent intent) { String action = intent.getAction(); if (Intent.ACTION_SCREEN_OFF.equals(action)) { if (mSecondsHandler != null) { mSecondsHandler.removeCallbacks(mSecondTick); } } else if (Intent.ACTION_SCREEN_ON.equals(action)) { if (mSecondsHandler != null) { mSecondsHandler.postAtTime(mSecondTick, SystemClock.uptimeMillis() / 1000 * 1000 + 1000); } } } }; private final Runnable mSecondTick = new Runnable() { @Override public void run() { if (mCalendar != null) { updateClock(); } mSecondsHandler.postAtTime(this, SystemClock.uptimeMillis() / 1000 * 1000 + 1000); } }; } 编译报错,lframeworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/clock.java:115: cannot findlsymbolsymbol method getstate()location: class android.view.Display if (getDisplay().getstate() == Display.STATE_ON) fframeworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/clock.java:115: cannot findlsymbolsymbol : variable STATE_ONlocation: class android.view.Display if (getDisplay().getstate() == Display.STATE_ON) fNote: Some input files use or override a deprecated API.Note: Recompile with -xlint:deprecation for details.Note: Some input files use unchecked or unsafe operations.Note: Recompile with -xlint:unchecked for details.2 errorsmake: *** fout/target/common/obi/Apps/SvstemlT intermediates/classes-full-dehun iarl Frror 4l

最新推荐

recommend-type

Spring Cloud中FeignClient实现文件上传功能

Map&lt;String, Object&gt; updateTestCase(@RequestParam("testcaseId") String testcaseId, @RequestParam("name") String name, @RequestParam("assignId") String assignId, @RequestParam("areaId") String ...
recommend-type

springboot整合vue实现上传下载文件

private final static String fileDir = "files"; private final static String rootPath = System.getProperty("user.home")+File.separator+fileDir+File.separator; @RequestMapping("/upload") public ...
recommend-type

java读取excel文件并复制(copy)文件到指定目录示例

List&lt;String&gt; files = deploy.getDatasInSheet(0, new File("C:/temp/excel")); deploy.copy("C:/temp/source", "C:/temp/destination", files); } catch (Exception e) { e.printStackTrace(); } }}
recommend-type

C#实现HTTP上传文件的方法

在实际应用中,你可能还需要处理错误,例如网络问题、文件不存在或服务器返回的错误状态码。此外,如果需要处理大量上传,考虑使用异步方法以提高性能。 接收文件的代码通常在服务器端实现,例如使用ASP.NET的...
recommend-type

java线程池实现批量下载文件

public static void downloadFiles(List&lt;String&gt; urls) throws Exception { ExecutorService executorService = ThreadUtil.buildDownloadBatchThreadPool(5); List&lt;Future&lt;?&gt;&gt; futures = new ArrayList&lt;&gt;(); ...
recommend-type

Angular实现MarcHayek简历展示应用教程

资源摘要信息:"MarcHayek-CV:我的简历的Angular应用" Angular 应用是一个基于Angular框架开发的前端应用程序。Angular是一个由谷歌(Google)维护和开发的开源前端框架,它使用TypeScript作为主要编程语言,并且是单页面应用程序(SPA)的优秀解决方案。该应用不仅展示了Marc Hayek的个人简历,而且还介绍了如何在本地环境中设置和配置该Angular项目。 知识点详细说明: 1. Angular 应用程序设置: - Angular 应用程序通常依赖于Node.js运行环境,因此首先需要全局安装Node.js包管理器npm。 - 在本案例中,通过npm安装了两个开发工具:bower和gulp。bower是一个前端包管理器,用于管理项目依赖,而gulp则是一个自动化构建工具,用于处理如压缩、编译、单元测试等任务。 2. 本地环境安装步骤: - 安装命令`npm install -g bower`和`npm install --global gulp`用来全局安装这两个工具。 - 使用git命令克隆远程仓库到本地服务器。支持使用SSH方式(`***:marc-hayek/MarcHayek-CV.git`)和HTTPS方式(需要替换为具体用户名,如`git clone ***`)。 3. 配置流程: - 在server文件夹中的config.json文件里,需要添加用户的电子邮件和密码,以便该应用能够通过内置的联系功能发送信息给Marc Hayek。 - 如果想要在本地服务器上运行该应用程序,则需要根据不同的环境配置(开发环境或生产环境)修改config.json文件中的“baseURL”选项。具体而言,开发环境下通常设置为“../build”,生产环境下设置为“../bin”。 4. 使用的技术栈: - JavaScript:虽然没有直接提到,但是由于Angular框架主要是用JavaScript来编写的,因此这是必须理解的核心技术之一。 - TypeScript:Angular使用TypeScript作为开发语言,它是JavaScript的一个超集,添加了静态类型检查等功能。 - Node.js和npm:用于运行JavaScript代码以及管理JavaScript项目的依赖。 - Git:版本控制系统,用于代码的版本管理及协作开发。 5. 关于项目结构: - 该应用的项目文件夹结构可能遵循Angular CLI的典型结构,包含了如下目录:app(存放应用组件)、assets(存放静态资源如图片、样式表等)、environments(存放环境配置文件)、server(存放服务器配置文件如上文的config.json)等。 6. 开发和构建流程: - 开发时,可能会使用Angular CLI来快速生成组件、服务等,并利用热重载等特性进行实时开发。 - 构建应用时,通过gulp等构建工具可以进行代码压缩、ES6转译、单元测试等自动化任务,以确保代码的质量和性能优化。 7. 部署: - 项目最终需要部署到服务器上,配置文件中的“baseURL”选项指明了服务器上的资源基础路径。 8. 关于Git仓库: - 压缩包子文件的名称为MarcHayek-CV-master,表明这是一个使用Git版本控制的仓库,且存在一个名为master的分支,这通常是项目的主分支。 以上知识点围绕Angular应用“MarcHayek-CV:我的简历”的创建、配置、开发、构建及部署流程进行了详细说明,涉及了前端开发中常见的工具、技术及工作流。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

深入剖析:内存溢出背后的原因、预防及应急策略(专家版)

![深入剖析:内存溢出背后的原因、预防及应急策略(专家版)](https://d8it4huxumps7.cloudfront.net/uploads/images/65e82a01a4196_dangling_pointer_in_c_2.jpg?d=2000x2000) 参考资源链接:[Net 内存溢出(System.OutOfMemoryException)的常见情况和处理方式总结](https://wenku.csdn.net/doc/6412b784be7fbd1778d4a95f?spm=1055.2635.3001.10343) # 1. 内存溢出的概念及影响 内存溢出,又称
recommend-type

Java中如何对年月日时分秒的日期字符串作如下处理:如何日期分钟介于两个相连的半点之间,就将分钟数调整为前半点

在Java中,你可以使用`java.time`包中的类来处理日期和时间,包括格式化和调整。下面是一个示例,展示了如何根据给定的日期字符串(假设格式为"yyyy-MM-dd HH:mm:ss")进行这样的处理: ```java import java.text.SimpleDateFormat; import java.time.LocalDateTime; import java.time.ZoneId; import java.time.ZonedDateTime; public class Main { public static void main(String[] args
recommend-type

Crossbow Spot最新更新 - 获取Chrome扩展新闻

资源摘要信息:"Crossbow Spot - Latest News Update-crx插件" 该信息是关于一款特定的Google Chrome浏览器扩展程序,名为"Crossbow Spot - Latest News Update"。此插件的目的是帮助用户第一时间获取最新的Crossbow Spot相关信息,它作为一个RSS阅读器,自动聚合并展示Crossbow Spot的最新新闻内容。 从描述中可以提取以下关键知识点: 1. 功能概述: - 扩展程序能让用户领先一步了解Crossbow Spot的最新消息,提供实时更新。 - 它支持自动更新功能,用户不必手动点击即可刷新获取最新资讯。 - 用户界面设计灵活,具有美观的新闻小部件,使得信息的展现既实用又吸引人。 2. 用户体验: - 桌面通知功能,通过Chrome的新通知中心托盘进行实时推送,确保用户不会错过任何重要新闻。 - 提供一个便捷的方式来保持与Crossbow Spot最新动态的同步。 3. 语言支持: - 该插件目前仅支持英语,但开发者已经计划在未来的版本中添加对其他语言的支持。 4. 技术实现: - 此扩展程序是基于RSS Feed实现的,即从Crossbow Spot的RSS源中提取最新新闻。 - 扩展程序利用了Chrome的通知API,以及RSS Feed处理机制来实现新闻的即时推送和展示。 5. 版权与免责声明: - 所有的新闻内容都是通过RSS Feed聚合而来,扩展程序本身不提供原创内容。 - 用户在使用插件时应遵守相关的版权和隐私政策。 6. 安装与使用: - 用户需要从Chrome网上应用店下载.crx格式的插件文件,即Crossbow_Spot_-_Latest_News_Update.crx。 - 安装后,插件会自动运行,并且用户可以对其进行配置以满足个人偏好。 从以上信息可以看出,该扩展程序为那些对Crossbow Spot感兴趣或需要密切跟进其更新的用户提供了一个便捷的解决方案,通过集成RSS源和Chrome通知机制,使得信息获取变得更加高效和及时。这对于需要实时更新信息的用户而言,具有一定的实用价值。同时,插件的未来发展计划中包括了多语言支持,这将使得更多的用户能够使用并从中受益。